* Refactor Export to take an account and know about the export types * Use Export instance in settings/exports#show
		
			
				
	
	
		
			14 lines
		
	
	
		
			222 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			222 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
module Settings
 | 
						|
  module Exports
 | 
						|
    class BlockedAccountsController < BaseController
 | 
						|
      private
 | 
						|
 | 
						|
      def export_data
 | 
						|
        @export.to_blocked_accounts_csv
 | 
						|
      end
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |