2017-04-12 05:00:43 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Settings
|
|
|
|
module Exports
|
2017-04-13 01:20:44 +09:00
|
|
|
class FollowingAccountsController < BaseController
|
|
|
|
private
|
2017-04-12 05:00:43 +09:00
|
|
|
|
2017-04-13 01:20:44 +09:00
|
|
|
def export_accounts
|
|
|
|
current_account.following
|
2017-04-12 05:00:43 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|