Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_refresh_with_low_urgency_worker.rb « authorized_project_update « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19038cb890015c36f7ce08fda7d90aa12578b919 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module AuthorizedProjectUpdate
  class UserRefreshWithLowUrgencyWorker < ::AuthorizedProjectsWorker
    feature_category :authentication_and_authorization
    urgency :low
    queue_namespace :authorized_project_update

    idempotent!
  end
end