summaryrefslogtreecommitdiff
path: root/app/workers/authorized_project_update/user_refresh_over_user_range_worker.rb
blob: 9bd1ad2ed3099db76b394b64a98f47b5901ab3e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module AuthorizedProjectUpdate
  class UserRefreshOverUserRangeWorker
    include ApplicationWorker

    feature_category :authentication_and_authorization
    urgency :low
    queue_namespace :authorized_project_update
    deduplicate :until_executing, including_scheduled: true

    idempotent!

    def perform(start_user_id, end_user_id)
      AuthorizedProjectUpdate::RecalculateForUserRangeService.new(start_user_id, end_user_id).execute
    end
  end
end