discourse/app/controllers/admin/export_csv_controller.rb

21 lines
504 B
Ruby
Raw Normal View History

2014-08-09 06:28:57 -04:00
class Admin::ExportCsvController < Admin::AdminController
skip_before_filter :check_xhr, only: [:download]
def export_user_list
# export csv file in a background thread
Jobs.enqueue(:export_csv_file, entity: 'user', user_id: current_user.id)
render json: success_json
end
def download
filename = params.fetch(:id)
if export_csv_path = ExportCsv.get_download_path(filename)
send_file export_csv_path
else
render nothing: true, status: 404
end
end
end