diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-10-14 12:21:03 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-14 12:21:03 +0900 |
commit | d1695b4fe45ee3b539c0aa3ffead01ac9e562fdc (patch) | |
tree | a6c50aa44fb75123ee2f53089b52a1d9be78aa0c /guides/source | |
parent | dfc6c8b9b288795ae4387840303e084ae4dcfdc3 (diff) | |
parent | 92a19f76719ec67d469b58dc05b6ebf6a184c6b4 (diff) | |
download | rails-d1695b4fe45ee3b539c0aa3ffead01ac9e562fdc.tar.gz rails-d1695b4fe45ee3b539c0aa3ffead01ac9e562fdc.tar.bz2 rails-d1695b4fe45ee3b539c0aa3ffead01ac9e562fdc.zip |
Merge pull request #30889 from yhirano55/add_unpermitted_parameters_hook_to_instrument_guide
Add unpermitted_parameters hook to instrumentation guide [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_support_instrumentation.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/guides/source/active_support_instrumentation.md b/guides/source/active_support_instrumentation.md index 390d989566..25f78fd940 100644 --- a/guides/source/active_support_instrumentation.md +++ b/guides/source/active_support_instrumentation.md @@ -197,6 +197,12 @@ INFO. Additional keys may be added by the caller. } ``` +### unpermitted_parameters.action_controller + +| Key | Value | +| ------- | ---------------- | +| `:keys` | Unpermitted keys | + Action View ----------- |