discourse/app/jobs/regular/post_alert.rb

13 lines
259 B
Ruby
Raw Normal View History

2015-04-20 12:34:57 -05:00
module Jobs
class PostAlert < Jobs::Base
def execute(args)
2015-05-05 19:44:45 -05:00
# maybe it was removed by the time we are making the post
post = Post.where(id: args[:post_id]).first
PostAlerter.post_created(post) if post && post.topic
2015-04-20 12:34:57 -05:00
end
end
end