* Refactor Export to take an account and know about the export types * Use Export instance in settings/exports#show
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			207 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			207 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| class Settings::ExportsController < ApplicationController
 | |
|   layout 'admin'
 | |
| 
 | |
|   before_action :authenticate_user!
 | |
| 
 | |
|   def show
 | |
|     @export = Export.new(current_account)
 | |
|   end
 | |
| end
 |