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

# TODO: remove this worker https://gitlab.com/gitlab-org/gitlab/-/issues/320775
class PagesRemoveWorker # rubocop:disable Scalability/IdempotentWorker
  include ApplicationWorker

  sidekiq_options retry: 3
  feature_category :pages
  tags :exclude_from_kubernetes
  loggable_arguments 0

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

    project.legacy_remove_pages
  end
end