summaryrefslogtreecommitdiff
path: root/app/workers/authorized_project_update/user_refresh_with_low_urgency_worker.rb
blob: 7ca59a72adf0271b842e0937c95233bbabd7d713 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module AuthorizedProjectUpdate
  class UserRefreshWithLowUrgencyWorker < ::AuthorizedProjectsWorker
    feature_category :authentication_and_authorization
    urgency :low
    queue_namespace :authorized_project_update
    deduplicate :until_executing, including_scheduled: true

    idempotent!
  end
end