debian-mirror-gitlab/app/workers/pages_update_configuration_worker.rb

22 lines
458 B
Ruby
Raw Normal View History

2020-10-24 23:57:45 +05:30
# frozen_string_literal: true
class PagesUpdateConfigurationWorker
include ApplicationWorker
idempotent!
feature_category :pages
2021-04-17 20:07:23 +05:30
def self.perform_async(*args)
return unless Feature.enabled?(:pages_update_legacy_storage, default_enabled: true)
super(*args)
end
2020-10-24 23:57:45 +05:30
def perform(project_id)
project = Project.find_by_id(project_id)
return unless project
2020-11-24 15:15:51 +05:30
Projects::UpdatePagesConfigurationService.new(project).execute
2020-10-24 23:57:45 +05:30
end
end