mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Adding missing docs to delete cookies with :all which were added that way.
This commit is contained in:
parent
f99132663b
commit
6148b2dd73
1 changed files with 2 additions and 1 deletions
|
@ -48,7 +48,8 @@ module ActionDispatch
|
||||||
# * <tt>:domain</tt> - The domain for which this cookie applies so you can
|
# * <tt>:domain</tt> - The domain for which this cookie applies so you can
|
||||||
# restrict to the domain level. If you use a schema like www.example.com
|
# restrict to the domain level. If you use a schema like www.example.com
|
||||||
# and want to share session with user.example.com set <tt>:domain</tt>
|
# and want to share session with user.example.com set <tt>:domain</tt>
|
||||||
# to <tt>:all</tt>
|
# to <tt>:all</tt>. Make sure to specify the <tt>:domain</tt> option with
|
||||||
|
# <tt>:all</tt> again when deleting keys.
|
||||||
#
|
#
|
||||||
# :domain => nil # Does not sets cookie domain. (default)
|
# :domain => nil # Does not sets cookie domain. (default)
|
||||||
# :domain => :all # Allow the cookie for the top most level
|
# :domain => :all # Allow the cookie for the top most level
|
||||||
|
|
Loading…
Reference in a new issue