diff options
author | Gannon McGibbon <gannon.mcgibbon@gmail.com> | 2019-02-04 11:09:46 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-04 11:09:46 -0500 |
commit | 5da63c1d5664b6499be3c05f12bedddd2079ffb4 (patch) | |
tree | 9a4bff5e0126067d8cd0c5b410e65f5df44a0537 /guides | |
parent | 4558161e4d65b0d3f88bc8a271bb19e75bc55ae9 (diff) | |
parent | ca62dfeede0c5352baf6c65688c71b9cd909c831 (diff) | |
download | rails-5da63c1d5664b6499be3c05f12bedddd2079ffb4.tar.gz rails-5da63c1d5664b6499be3c05f12bedddd2079ffb4.tar.bz2 rails-5da63c1d5664b6499be3c05f12bedddd2079ffb4.zip |
Merge pull request #35086 from gsamokovarov/cleanup-whitelisting-refs
Cleanup the whitelisting references after #33145
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/api_app.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/api_app.md b/guides/source/api_app.md index 85367c50e7..870f5f7b87 100644 --- a/guides/source/api_app.md +++ b/guides/source/api_app.md @@ -374,7 +374,7 @@ controller modules by default: - `ActionController::Renderers::All`: Support for `render :json` and friends. - `ActionController::ConditionalGet`: Support for `stale?`. - `ActionController::BasicImplicitRender`: Makes sure to return an empty response, if there isn't an explicit one. -- `ActionController::StrongParameters`: Support for parameters white-listing in combination with Active Model mass assignment. +- `ActionController::StrongParameters`: Support for parameters filtering in combination with Active Model mass assignment. - `ActionController::DataStreaming`: Support for `send_file` and `send_data`. - `AbstractController::Callbacks`: Support for `before_action` and similar helpers. |