2017-04-13 01:20:44 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Settings
|
|
|
|
module Exports
|
|
|
|
class MutedAccountsController < BaseController
|
|
|
|
private
|
|
|
|
|
2017-04-13 20:02:02 +09:00
|
|
|
def export_data
|
|
|
|
@export.to_muted_accounts_csv
|
2017-04-13 01:20:44 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|