mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Support cookie jar options for all cookie stores
This commit is contained in:
parent
0b019cc3b8
commit
4121938626
2 changed files with 14 additions and 0 deletions
|
@ -74,6 +74,13 @@ module ActionDispatch
|
|||
class AbstractStore < Rack::Session::Abstract::ID
|
||||
include Compatibility
|
||||
include StaleSessionCheck
|
||||
|
||||
private
|
||||
|
||||
def set_cookie(env, session_id, cookie)
|
||||
request = ActionDispatch::Request.new(env)
|
||||
request.cookie_jar[key] = cookie
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -254,6 +254,13 @@ class ActiveRecordStoreTest < ActionDispatch::IntegrationTest
|
|||
end
|
||||
end
|
||||
|
||||
def test_session_store_with_all_domains
|
||||
with_test_route_set(:domain => :all) do
|
||||
get '/set_session_value'
|
||||
assert_response :success
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def with_test_route_set(options = {})
|
||||
|
|
Loading…
Reference in a new issue