debian-mirror-gitlab/app/workers/authorized_projects_worker.rb
2022-08-13 15:12:31 +05:30

22 lines
448 B
Ruby

# frozen_string_literal: true
class AuthorizedProjectsWorker
include ApplicationWorker
data_consistency :always
sidekiq_options retry: 3
prepend WaitableWorker
feature_category :authentication_and_authorization
urgency :high
weight 2
idempotent!
loggable_arguments 1 # For the job waiter key
def perform(user_id)
user = User.find_by_id(user_id)
user&.refresh_authorized_projects(source: self.class.name)
end
end