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

class PagesUpdateConfigurationWorker
  include ApplicationWorker

  idempotent!
  feature_category :pages

  def self.perform_async(*args)
    return unless Feature.enabled?(:pages_update_legacy_storage, default_enabled: true)

    super(*args)
  end

  def perform(project_id)
    project = Project.find_by_id(project_id)
    return unless project

    Projects::UpdatePagesConfigurationService.new(project).execute
  end
end