Skip to content

Commit

Permalink
fixes incorrect spelling of action_on_unpermitted_parameters
Browse files Browse the repository at this point in the history
See `actionpack/test/controller/parameters/raise_on_unpermitted_params_test.rb`
  • Loading branch information
jaredbeck committed Sep 29, 2013
1 parent 37c721a commit 6fae1ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guides/source/configuring.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ The schema dumper adds one additional configuration option:
* `config.action_controller.permit_all_parameters` sets all the parameters for mass assignment to be permitted by default. The default value is `false`. * `config.action_controller.permit_all_parameters` sets all the parameters for mass assignment to be permitted by default. The default value is `false`.
* `config.action_controller.action_on_unpermitted_params` enables logging or raising an exception if parameters that are not explicitly permitted are found. Set to `:log` or `:raise` to enable. The default value is `:log` in development and test environments, and `false` in all other environments. * `config.action_controller.action_on_unpermitted_parameters` enables logging or raising an exception if parameters that are not explicitly permitted are found. Set to `:log` or `:raise` to enable. The default value is `:log` in development and test environments, and `false` in all other environments.
### Configuring Action Dispatch ### Configuring Action Dispatch
Expand Down

0 comments on commit 6fae1ef

Please sign in to comment.