16 lines
431 B
Ruby
16 lines
431 B
Ruby
|
require_dependency "post_alerter"
|
||
|
|
||
|
module Jobs
|
||
|
class NotifyCategoryChange < Jobs::Base
|
||
|
def execute(args)
|
||
|
post = Post.find_by(id: args[:post_id])
|
||
|
|
||
|
if post&.topic
|
||
|
post_alerter = PostAlerter.new
|
||
|
post_alerter.notify_post_users(post, User.where(id: args[:notified_user_ids]))
|
||
|
post_alerter.notify_first_post_watchers(post, post_alerter.category_watchers(post.topic))
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|