0e39cc6a35
* Refactor Export to take an account and know about the export types * Use Export instance in settings/exports#show
14 lines
218 B
Ruby
14 lines
218 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Settings
|
|
module Exports
|
|
class MutedAccountsController < BaseController
|
|
private
|
|
|
|
def export_data
|
|
@export.to_muted_accounts_csv
|
|
end
|
|
end
|
|
end
|
|
end
|