summaryrefslogtreecommitdiff
path: root/app/workers/import_export_project_cleanup_worker.rb
blob: 8a018024e956796894a5d1d1ca9da4eaa9a579a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

class ImportExportProjectCleanupWorker
  include ApplicationWorker
  include CronjobQueue # rubocop:disable Scalability/CronWorkerContext

  feature_category :importers

  def perform
    ImportExportCleanUpService.new.execute
  end
end