discourse/app/jobs/regular/post_alert.rb
2015-05-06 10:44:45 +10:00

13 lines
248 B
Ruby

module Jobs
class PostAlert < Jobs::Base
def execute(args)
# maybe it was removed by the time we are making the post
if post = Post.find_by(id: args[:post_id])
PostAlerter.post_created(post)
end
end
end
end