gitlab-org--gitlab-foss/app/workers/import_export_project_clean...

11 lines
189 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class ImportExportProjectCleanupWorker
include ApplicationWorker
include CronjobQueue
2016-06-14 20:11:21 +00:00
def perform
ImportExportCleanUpService.new.execute
2016-06-14 20:11:21 +00:00
end
end