about summary refs log tree commit diff
path: root/app/controllers/settings/exports/following_accounts_controller.rb
blob: 8d06bcc954932027ad7c54d028f3192de264b503 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Settings
  module Exports
    class FollowingAccountsController < BaseController
      private

      def export_accounts
        current_account.following
      end
    end
  end
end