mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
14 lines
323 B
Ruby
14 lines
323 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(args[:post_id])
|
|
# maybe the topic was deleted, so skip in that case as well
|
|
PostAlerter.post_created(post) if post.topic
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
|