mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-11 09:53:27 +00:00
7f0a865b05
* Allow export of mutes list * Allow importing of mutes list * Refactor to use Settings::Exports::BaseController and DRY up exports code
14 lines
215 B
Ruby
14 lines
215 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Settings
|
|
module Exports
|
|
class MutedAccountsController < BaseController
|
|
private
|
|
|
|
def export_accounts
|
|
current_account.muting
|
|
end
|
|
end
|
|
end
|
|
end
|