summaryrefslogtreecommitdiff
path: root/app/workers/authorized_projects_worker.rb
blob: b553a2cd14ea4f8f285d4f7ac0f11a2bf723f257 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

class AuthorizedProjectsWorker
  include ApplicationWorker

  data_consistency :always

  sidekiq_options retry: 3
  prepend WaitableWorker

  feature_category :system_access
  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