debian-mirror-gitlab/app/workers/project_export_worker.rb
2018-03-17 18:26:18 +05:30

13 lines
330 B
Ruby

class ProjectExportWorker
include ApplicationWorker
include ExceptionBacktrace
sidekiq_options retry: 3
def perform(current_user_id, project_id)
current_user = User.find(current_user_id)
project = Project.find(project_id)
::Projects::ImportExport::ExportService.new(project, current_user).execute
end
end