From fe7394afe702eeae6e5d2c4c64e99e74f4afb382 Mon Sep 17 00:00:00 2001 From: Daniel Carral Date: Tue, 29 Nov 2016 18:27:17 +0100 Subject: Document 'false' as option for 'action_on_unpermitted_parameters' [ci skip] --- actionpack/lib/action_controller/metal/strong_parameters.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'actionpack') diff --git a/actionpack/lib/action_controller/metal/strong_parameters.rb b/actionpack/lib/action_controller/metal/strong_parameters.rb index e14da22e01..acfeca1fcb 100644 --- a/actionpack/lib/action_controller/metal/strong_parameters.rb +++ b/actionpack/lib/action_controller/metal/strong_parameters.rb @@ -71,8 +71,8 @@ module ActionController # * +permit_all_parameters+ - If it's +true+, all the parameters will be # permitted by default. The default is +false+. # * +action_on_unpermitted_parameters+ - Allow to control the behavior when parameters - # that are not explicitly permitted are found. The values can be :log to - # write a message on the logger or :raise to raise + # that are not explicitly permitted are found. The values can be +false+ to just filter them + # out, :log to additionally write a message on the logger, or :raise to raise # ActionController::UnpermittedParameters exception. The default value is :log # in test and development environments, +false+ otherwise. # -- cgit v1.2.3