mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2025-01-16 03:02:26 +01:00
7f0a865b05
* Allow export of mutes list * Allow importing of mutes list * Refactor to use Settings::Exports::BaseController and DRY up exports code
13 lines
222 B
Ruby
13 lines
222 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Settings
|
|
module Exports
|
|
class FollowingAccountsController < BaseController
|
|
private
|
|
|
|
def export_accounts
|
|
current_account.following
|
|
end
|
|
end
|
|
end
|
|
end
|