mirror of
https://github.com/discourse/discourse.git
synced 2025-05-23 18:41:07 +08:00
SECURITY: Validate the entity
when downloading a CSV
This commit is contained in:
@ -3,7 +3,7 @@ class ExportCsvController < ApplicationController
|
||||
skip_before_filter :preload_json, :check_xhr, only: [:show]
|
||||
|
||||
def export_entity
|
||||
guardian.ensure_can_export_entity!(export_params[:entity_type])
|
||||
guardian.ensure_can_export_entity!(export_params[:entity])
|
||||
Jobs.enqueue(:export_csv_file, entity: export_params[:entity], user_id: current_user.id, args: export_params[:args])
|
||||
render json: success_json
|
||||
end
|
||||
@ -29,8 +29,7 @@ class ExportCsvController < ApplicationController
|
||||
def export_params
|
||||
@_export_params ||= begin
|
||||
params.require(:entity)
|
||||
params.require(:entity_type)
|
||||
params.permit(:entity, :entity_type, args: [:name, :start_date, :end_date, :category_id, :group_id, :trust_level])
|
||||
params.permit(:entity, args: [:name, :start_date, :end_date, :category_id, :group_id, :trust_level])
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user