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