summaryrefslogtreecommitdiff
path: root/app/workers/namespaces/onboarding_issue_created_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/namespaces/onboarding_issue_created_worker.rb')
-rw-r--r--app/workers/namespaces/onboarding_issue_created_worker.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/app/workers/namespaces/onboarding_issue_created_worker.rb b/app/workers/namespaces/onboarding_issue_created_worker.rb
deleted file mode 100644
index 4f0cc71cd91..00000000000
--- a/app/workers/namespaces/onboarding_issue_created_worker.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-# frozen_string_literal: true
-
-module Namespaces
- class OnboardingIssueCreatedWorker
- include ApplicationWorker
-
- data_consistency :always
-
- sidekiq_options retry: 3
-
- feature_category :onboarding
- urgency :low
-
- deduplicate :until_executing
- idempotent!
-
- def perform(namespace_id)
- namespace = Namespace.find_by_id(namespace_id)
- return unless namespace
-
- Onboarding::ProgressService.new(namespace).execute(action: :issue_created)
- end
- end
-end