about summary refs log blame commit diff
path: root/app/controllers/settings/exports/following_accounts_controller.rb
blob: 74281ddca267ac298be567d1f25d2c85ec07b870 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


                             





                                                             
             
 
                                         


         
# frozen_string_literal: true

module Settings
  module Exports
    class FollowingAccountsController < ApplicationController
      include ExportControllerConcern

      def index
        send_export_file
      end

      private

      def export_data
        @export.to_following_accounts_csv
      end
    end
  end
end