debian-mirror-gitlab/app/workers/namespaces/onboarding_issue_created_worker.rb
2021-11-18 22:05:49 +05:30

25 lines
489 B
Ruby

# 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
OnboardingProgressService.new(namespace).execute(action: :issue_created)
end
end
end