25 lines
535 B
Ruby
25 lines
535 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Namespaces
|
|
class OnboardingProgressWorker
|
|
include ApplicationWorker
|
|
|
|
data_consistency :always
|
|
|
|
sidekiq_options retry: 3
|
|
|
|
feature_category :onboarding
|
|
worker_resource_boundary :cpu
|
|
urgency :low
|
|
|
|
deduplicate :until_executed
|
|
idempotent!
|
|
|
|
def perform(namespace_id, action)
|
|
namespace = Namespace.find_by_id(namespace_id)
|
|
return unless namespace && action
|
|
|
|
OnboardingProgressService.new(namespace).execute(action: action.to_sym)
|
|
end
|
|
end
|
|
end
|