You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
392 B

  1. # frozen_string_literal: true
  2. module Settings
  3. module Exports
  4. class BlockedAccountsController < ApplicationController
  5. before_action :authenticate_user!
  6. def index
  7. export_data = Export.new(current_account.blocking).to_csv
  8. respond_to do |format|
  9. format.csv { send_data export_data, filename: 'blocking.csv' }
  10. end
  11. end
  12. end
  13. end
  14. end