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:
parent
693b333920
commit
85eacc64a6
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue