summaryrefslogtreecommitdiff
path: root/app/workers/namespaces/onboarding_user_added_worker.rb
blob: 4d4d9c03d3e65296e4c1d9ceaca12addcbe37fa6 (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

module Namespaces
  class OnboardingUserAddedWorker
    include ApplicationWorker

    data_consistency :always

    sidekiq_options retry: 3

    feature_category :users
    tags :exclude_from_kubernetes
    urgency :low

    idempotent!

    def perform(namespace_id)
      namespace = Namespace.find(namespace_id)
      OnboardingProgressService.new(namespace).execute(action: :user_added)
    end
  end
end