2017-04-11 16:00:43 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Settings
|
|
|
|
module Exports
|
2017-04-12 12:20:44 -04:00
|
|
|
class BlockedAccountsController < BaseController
|
|
|
|
private
|
2017-04-11 16:00:43 -04:00
|
|
|
|
2017-04-12 12:20:44 -04:00
|
|
|
def export_accounts
|
|
|
|
current_account.blocking
|
2017-04-11 16:00:43 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|