summaryrefslogtreecommitdiff
path: root/app/workers/namespaces/onboarding_user_added_worker.rb
blob: 02608268d6fe021d77e78dc9c6d0f2b4473c817f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Namespaces
  class OnboardingUserAddedWorker
    include ApplicationWorker

    feature_category :users
    urgency :low

    idempotent!

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