You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I try to access cookies from the response before env.session is called, then my cookies are empty.
puts env.response.cookies.inspect # no cookies
env.session
puts env.response.cookies.inspect # lots of cookies
Since this is lazy loaded, I think being able to access cookies from env.session like env.session.cookies["my_cookie"] would be helpful. This would allow it to remain lazy loaded.
The text was updated successfully, but these errors were encountered:
If I try to access cookies from the response before
env.session
is called, then my cookies are empty.Since this is lazy loaded, I think being able to access cookies from
env.session
likeenv.session.cookies["my_cookie"]
would be helpful. This would allow it to remain lazy loaded.The text was updated successfully, but these errors were encountered: