mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
964 B
26 lines
964 B
# frozen_string_literal: true
|
|
|
|
class SubmissionsExportController < ApplicationController
|
|
load_and_authorize_resource :template
|
|
load_and_authorize_resource :submission, through: :template, parent: false, only: :index
|
|
|
|
def index
|
|
submissions = @submissions.active
|
|
.preload(submitters: { documents_attachments: :blob,
|
|
attachments_attachments: :blob })
|
|
.order(id: :asc)
|
|
|
|
expires_at = Accounts.link_expires_at(current_account)
|
|
|
|
if params[:format] == 'csv'
|
|
send_data Submissions::GenerateExportFiles.call(submissions, format: params[:format], expires_at:),
|
|
filename: "#{@template.name}.csv"
|
|
elsif params[:format] == 'xlsx'
|
|
send_data Submissions::GenerateExportFiles.call(submissions, format: params[:format], expires_at:),
|
|
filename: "#{@template.name}.xlsx"
|
|
end
|
|
end
|
|
|
|
def new; end
|
|
end
|