闭社主体 forked from https://github.com/tootsuite/mastodon
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.

23 lines
447 B

  1. # frozen_string_literal: true
  2. module Settings
  3. module Exports
  4. class BaseController < ApplicationController
  5. before_action :authenticate_user!
  6. def index
  7. @export = Export.new(current_account)
  8. respond_to do |format|
  9. format.csv { send_data export_data, filename: export_filename }
  10. end
  11. end
  12. private
  13. def export_filename
  14. "#{controller_name}.csv"
  15. end
  16. end
  17. end
  18. end