summaryrefslogtreecommitdiff
path: root/app/workers/namespaces/onboarding_progress_worker.rb
blob: 43d136180913e594142b2582b0987f2c7f864e09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true

module Namespaces
  class OnboardingProgressWorker
    include ApplicationWorker

    data_consistency :always

    sidekiq_options retry: 3

    feature_category :product_analytics
    worker_resource_boundary :cpu
    tags :exclude_from_kubernetes
    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