about summary refs log tree commit diff
path: root/app/controllers/settings/exports/following_accounts_controller.rb
blob: a7f4344ca78b0e841204f4d6e7532097da92aaee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Settings
  module Exports
    class FollowingAccountsController < ApplicationController
      before_action :authenticate_user!

      def index
        export_data = Export.new(current_account.following).to_csv

        respond_to do |format|
          format.csv { send_data export_data, filename: 'following.csv' }
        end
      end
    end
  end
end