mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:50:14 +08:00
13 lines
259 B
Ruby
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
|
|
|