mirror of
https://github.com/github/rails.git
synced 2026-01-30 00:38:00 -05:00
Expose the cookie jar as a helper method (before the view would just get the raw cookie hash) [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8062 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
*SVN*
|
||||
|
||||
* Expose the cookie jar as a helper method (before the view would just get the raw cookie hash) [DHH]
|
||||
|
||||
* Integration tests: get_ and post_via_redirect take a headers hash. #9130 [simonjefford]
|
||||
|
||||
* Simplfy #view_paths implementation. ActionView templates get the exact object, not a dup. [Rick]
|
||||
|
||||
@@ -27,6 +27,10 @@ module ActionController #:nodoc:
|
||||
# * <tt>http_only</tt> - whether this cookie is accessible via scripting or only HTTP (defaults to false).
|
||||
|
||||
module Cookies
|
||||
def self.included(base)
|
||||
base.helper_method :cookies
|
||||
end
|
||||
|
||||
protected
|
||||
# Returns the cookie container, which operates as described above.
|
||||
def cookies
|
||||
|
||||
Reference in New Issue
Block a user