diff options
author | Igor Kasyanchuk <igorkasyanchuk@gmail.com> | 2018-01-31 13:36:01 -0800 |
---|---|---|
committer | Igor Kasyanchuk <igorkasyanchuk@gmail.com> | 2018-01-31 13:36:01 -0800 |
commit | 2587cadd4223f4abc1a94fdfb14cfd8c8d60e28b (patch) | |
tree | 34ca3563a8466f21a819b6675c74b366325e4f7b /actionpack/lib/action_dispatch/middleware | |
parent | 148d0077c539ebca99a8cf776902805da3431f95 (diff) | |
download | rails-2587cadd4223f4abc1a94fdfb14cfd8c8d60e28b.tar.gz rails-2587cadd4223f4abc1a94fdfb14cfd8c8d60e28b.tar.bz2 rails-2587cadd4223f4abc1a94fdfb14cfd8c8d60e28b.zip |
Consistent behavior for session and cookies with to_h and to_hash method
Diffstat (limited to 'actionpack/lib/action_dispatch/middleware')
-rw-r--r-- | actionpack/lib/action_dispatch/middleware/cookies.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/cookies.rb b/actionpack/lib/action_dispatch/middleware/cookies.rb index ea4156c972..c45d947904 100644 --- a/actionpack/lib/action_dispatch/middleware/cookies.rb +++ b/actionpack/lib/action_dispatch/middleware/cookies.rb @@ -338,6 +338,9 @@ module ActionDispatch end alias :has_key? :key? + # Returns the cookies as Hash. + alias :to_hash :to_h + def update(other_hash) @cookies.update other_hash.stringify_keys self |