Class: Jobs::GroupPmUpdateSummary

Inherits:
Base
  • Object
show all
Defined in:
app/jobs/regular/group_pm_update_summary.rb

Instance Method Summary collapse

Methods inherited from Base

acquire_cluster_concurrency_lock!, clear_cluster_concurrency_lock!, cluster_concurrency, cluster_concurrency_redis_key, delayed_perform, #error_context, get_cluster_concurrency, #last_db_duration, #log, #perform, #perform_immediately

Instance Method Details

#execute(args) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'app/jobs/regular/group_pm_update_summary.rb', line 5

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