blob: 0011d2463a183ec10b1b75f1c56504f320a6ff3b (
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_data
@export.to_following_accounts_csv
end
end
end
end
|