summaryrefslogtreecommitdiff
path: root/app/workers/project_export_worker.rb
blob: c100852374a1e05be0f4611e6a48aabbebc5353e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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