1
0
mirror of https://github.com/funamitech/mastodon synced 2025-01-09 11:23:26 +09:00
YuruToot/app/controllers/settings/exports/blocked_accounts_controller.rb
Matt Jankowski 7f0a865b05 Allow import/export of mutes list ()
* Allow export of mutes list

* Allow importing of mutes list

* Refactor to use Settings::Exports::BaseController and DRY up exports code
2017-04-12 18:20:44 +02:00

14 lines
219 B
Ruby

# frozen_string_literal: true
module Settings
module Exports
class BlockedAccountsController < BaseController
private
def export_accounts
current_account.blocking
end
end
end
end