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

module Namespaces
  class OnboardingIssueCreatedWorker
    include ApplicationWorker

    feature_category :issue_tracking
    urgency :low

    deduplicate :until_executing
    idempotent!

    def perform(namespace_id)
      namespace = Namespace.find_by_id(namespace_id)
      return unless namespace

      OnboardingProgressService.new(namespace).execute(action: :issue_created)
    end
  end
end