chinwagsocial/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

14 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