1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #40591 from jonathanhefner/actioncontroller-cookies-docs

Document ActionController::Cookies#cookies [ci-skip]
This commit is contained in:
Rafael França 2020-11-09 18:08:48 -05:00 committed by GitHub
commit bf6ba3c668
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,9 @@ module ActionController #:nodoc:
end
private
def cookies
# The cookies for the current request. See ActionDispatch::Cookies for
# more information.
def cookies # :doc:
request.cookie_jar
end
end