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