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
						
					
					
						
							348 B
						
					
					
				
			
		
		
	
	
							14 lines
						
					
					
						
							348 B
						
					
					
				# frozen_string_literal: true
 | 
						|
 | 
						|
class SubmissionsDownloadController < ApplicationController
 | 
						|
  skip_before_action :authenticate_user!
 | 
						|
 | 
						|
  def index
 | 
						|
    submission = Submission.find_by(slug: params[:submission_slug])
 | 
						|
 | 
						|
    Submissions::GenerateResultAttachments.call(submission)
 | 
						|
 | 
						|
    redirect_to submission.archive.url, allow_other_host: true
 | 
						|
  end
 | 
						|
end
 |