mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-24 11:12:42 +00:00
* Allow export of mutes list * Allow importing of mutes list * Refactor to use Settings::Exports::BaseController and DRY up exports code
13 lines
215 B
Ruby
13 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
|