1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/controllers/settings/exports/following_accounts_controller.rb
Matt Jankowski 0e39cc6a35 Settings export refactor (#1646)
* Refactor Export to take an account and know about the export types

* Use Export instance in settings/exports#show
2017-04-13 13:02:02 +02:00

13 lines
226 B
Ruby

# frozen_string_literal: true
module Settings
module Exports
class FollowingAccountsController < BaseController
private
def export_data
@export.to_following_accounts_csv
end
end
end
end