debian-mirror-gitlab/app/workers/import_export_project_cleanup_worker.rb
2020-04-08 14:13:33 +05:30

16 lines
424 B
Ruby

# frozen_string_literal: true
class ImportExportProjectCleanupWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
# rubocop:disable Scalability/CronWorkerContext
# This worker does not perform work scoped to a context
include CronjobQueue
# rubocop:enable Scalability/CronWorkerContext
feature_category :importers
def perform
ImportExportCleanUpService.new.execute
end
end