discourse/app/jobs/regular/post_alert.rb

13 lines
259 B
Ruby

module Jobs
class PostAlert < Jobs::Base
def execute(args)
# 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
end
end
end