2017-04-11 16:00:43 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Settings
|
|
|
|
module Exports
|
2020-09-11 20:56:35 +02:00
|
|
|
class BlockedAccountsController < BaseController
|
2023-11-30 09:39:41 -05:00
|
|
|
include Settings::ExportControllerConcern
|
2017-05-30 13:06:01 -04:00
|
|
|
|
|
|
|
def index
|
|
|
|
send_export_file
|
|
|
|
end
|
|
|
|
|
2017-04-12 12:20:44 -04:00
|
|
|
private
|
2017-04-11 16:00:43 -04:00
|
|
|
|
2017-04-13 07:02:02 -04:00
|
|
|
def export_data
|
|
|
|
@export.to_blocked_accounts_csv
|
2017-04-11 16:00:43 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|