mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
FEATURE: export user list
This commit is contained in:
parent
2850ce46b8
commit
d0736a06b6
11 changed files with 222 additions and 1 deletions
20
app/controllers/admin/export_csv_controller.rb
Normal file
20
app/controllers/admin/export_csv_controller.rb
Normal file
|
@ -0,0 +1,20 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue