summaryrefslogtreecommitdiff
path: root/app/workers/onboarding/user_added_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/onboarding/user_added_worker.rb')
-rw-r--r--app/workers/onboarding/user_added_worker.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/app/workers/onboarding/user_added_worker.rb b/app/workers/onboarding/user_added_worker.rb
new file mode 100644
index 00000000000..38e9cd063ea
--- /dev/null
+++ b/app/workers/onboarding/user_added_worker.rb
@@ -0,0 +1,24 @@
+# frozen_string_literal: true
+
+module Onboarding
+ class UserAddedWorker
+ include ApplicationWorker
+
+ data_consistency :always
+
+ sidekiq_options retry: 3
+
+ feature_category :onboarding
+ urgency :low
+
+ idempotent!
+
+ def perform(namespace_id)
+ namespace = Namespace.find(namespace_id)
+ Onboarding::ProgressService.new(namespace).execute(action: :user_added)
+ end
+ end
+end
+
+# remove in %15.6 as per https://gitlab.com/gitlab-org/gitlab/-/issues/372432
+Namespaces::OnboardingUserAddedWorker = Onboarding::UserAddedWorker