2017-04-12 16:20:44 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Settings
|
|
|
|
module Exports
|
2017-05-30 17:06:01 +00:00
|
|
|
class MutedAccountsController < ApplicationController
|
|
|
|
include ExportControllerConcern
|
|
|
|
|
|
|
|
def index
|
|
|
|
send_export_file
|
|
|
|
end
|
|
|
|
|
2017-04-12 16:20:44 +00:00
|
|
|
private
|
|
|
|
|
2017-04-13 11:02:02 +00:00
|
|
|
def export_data
|
|
|
|
@export.to_muted_accounts_csv
|
2017-04-12 16:20:44 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|