2017-04-12 05:00:43 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Settings
|
|
|
|
module Exports
|
2020-09-12 03:56:35 +09:00
|
|
|
class FollowingAccountsController < BaseController
|
2017-05-31 02:06:01 +09:00
|
|
|
include ExportControllerConcern
|
|
|
|
|
|
|
|
def index
|
|
|
|
send_export_file
|
|
|
|
end
|
|
|
|
|
2017-04-13 01:20:44 +09:00
|
|
|
private
|
2017-04-12 05:00:43 +09:00
|
|
|
|
2017-04-13 20:02:02 +09:00
|
|
|
def export_data
|
|
|
|
@export.to_following_accounts_csv
|
2017-04-12 05:00:43 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|