This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-04-11 13:00:43 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Settings
|
|
|
|
module Exports
|
2017-04-12 09:20:44 -07:00
|
|
|
class FollowingAccountsController < BaseController
|
|
|
|
private
|
2017-04-11 13:00:43 -07:00
|
|
|
|
2017-04-13 04:02:02 -07:00
|
|
|
def export_data
|
|
|
|
@export.to_following_accounts_csv
|
2017-04-11 13:00:43 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|