Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/namespaces/onboarding_user_added_worker.rb')
-rw-r--r--app/workers/namespaces/onboarding_user_added_worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/namespaces/onboarding_user_added_worker.rb b/app/workers/namespaces/onboarding_user_added_worker.rb
index 4d17cf9a6e2..a1b349eedd3 100644
--- a/app/workers/namespaces/onboarding_user_added_worker.rb
+++ b/app/workers/namespaces/onboarding_user_added_worker.rb
@@ -15,7 +15,7 @@ module Namespaces
def perform(namespace_id)
namespace = Namespace.find(namespace_id)
- OnboardingProgressService.new(namespace).execute(action: :user_added)
+ Onboarding::ProgressService.new(namespace).execute(action: :user_added)
end
end
end