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

module Settings
  module Exports
    class FollowersAccountsController < ApplicationController
      include ExportControllerConcern

      def index
        send_export_file
      end

      private

      def export_data
        @export.to_followers_accounts_csv
      end
    end
  end
end