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.
		
		
		
		
		
			
		
			
				
					
					
						
							14 lines
						
					
					
						
							386 B
						
					
					
				
			
		
		
	
	
							14 lines
						
					
					
						
							386 B
						
					
					
				# frozen_string_literal: true
 | 
						|
 | 
						|
class SubmissionsDownloadController < ApplicationController
 | 
						|
  skip_before_action :authenticate_user!
 | 
						|
 | 
						|
  def index
 | 
						|
    submitter = Submitter.find_by(slug: params[:submitter_slug])
 | 
						|
 | 
						|
    Submissions::GenerateResultAttachments.call(submitter) if submitter.documents.blank?
 | 
						|
 | 
						|
    render json: submitter.documents.map { |e| helpers.rails_blob_url(e) }
 | 
						|
  end
 | 
						|
end
 |