1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-24 23:26:42 +09:00
YuruToot/app/controllers/settings/exports/blocked_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
222 B
Ruby

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