Welcome to mirror list, hosted at ThFree Co, Russian Federation.

import_export_project_cleanup_worker.rb « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9788c8df3a3fa4308a1ac664e14d4348cc312a98 (plain)
1
2
3
4
5
6
7
8
class ImportExportProjectCleanupWorker
  include ApplicationWorker
  include CronjobQueue

  def perform
    ImportExportCleanUpService.new.execute
  end
end