diff options
author | bogdanvlviv <bogdanvlviv@gmail.com> | 2018-08-30 10:21:40 +0300 |
---|---|---|
committer | bogdanvlviv <bogdanvlviv@gmail.com> | 2018-08-30 11:49:52 +0300 |
commit | 35740ab2da890a09607b3c372ed48fd40cfc762f (patch) | |
tree | 51ea4ac5c5b248c5b08581660b23861aaf052909 /guides | |
parent | 3175d3d549821edefff4604db8fc729391957f0e (diff) | |
download | rails-35740ab2da890a09607b3c372ed48fd40cfc762f.tar.gz rails-35740ab2da890a09607b3c372ed48fd40cfc762f.tar.bz2 rails-35740ab2da890a09607b3c372ed48fd40cfc762f.zip |
Add info about `config.action_dispatch.use_cookies_with_metadata` to "Configuring Rails Applications" guide [ci skip]
Related to #32937, #33605.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/configuring.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index b20a2bb0d2..7265d1e05f 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -516,6 +516,9 @@ Defaults to `'signed cookie'`. signed and encrypted cookies use the AES-256-GCM cipher or the older AES-256-CBC cipher. It defaults to `true`. +* `config.action_dispatch.use_cookies_with_metadata` enables writing + cookies with the purpose and expiry metadata embedded. It defaults to `true`. + * `config.action_dispatch.perform_deep_munge` configures whether `deep_munge` method should be performed on the parameters. See [Security Guide](security.html#unsafe-query-generation) for more information. It defaults to `true`. |