Explicit param permit and assignment cleanup.

This commit is contained in:
Kevin Elliott 2018-03-23 09:59:31 -07:00
parent 58ec4d04c0
commit fa0868fc3f
1 changed files with 4 additions and 3 deletions

View File

@ -668,9 +668,10 @@ class TopicsController < ApplicationController
raise ActionController::ParameterMissing.new(:topic_ids)
end
operation = params.require(:operation)
operation.permit!
operation = operation.to_h.symbolize_keys
operation = params
.require(:operation)
.permit(:type, :group, :category_id, :notification_level_id, :tags)
.to_h.symbolize_keys
raise ActionController::ParameterMissing.new(:operation_type) if operation[:type].blank?
operator = TopicsBulkAction.new(current_user, topic_ids, operation, group: operation[:group])