discourse/app/jobs/regular/group_pm_update_summary.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
624 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Jobs
class GroupPmUpdateSummary < ::Jobs::Base
def execute(args)
return unless group = Group.find_by(id: args[:group_id])
return unless topic = Topic.find_by(id: args[:topic_id])
group.set_message_default_notification_levels!(topic, ignore_existing: true)
alerter = PostAlerter.new
group
.users
.where("group_users.notification_level = :level", level: NotificationLevels.all[:tracking])
.find_each do |u|
alerter.notify_group_summary(u, topic, acting_user_id: args[:acting_user_id])
end
end
end
end