mastodon/app/controllers/settings/exports/following_accounts_controll...

14 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