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

added docs for ActionDispatch::Request::Session#create

This commit is contained in:
Bruce Park 2015-04-07 01:23:51 +00:00
parent 693b333920
commit 85eacc64a6

View file

@ -9,7 +9,9 @@ module ActionDispatch
# Singleton object used to determine if an optional param wasn't specified
Unspecified = Object.new
# Creates a session hash, merging the properties of the previous session if any
def self.create(store, env, default_options)
session_was = find env
session = Request::Session.new(store, env)