Class: ActionDispatch::Session::CookieStore::SessionId
- Inherits:
-
Rack::Session::SessionId
- Object
- Rack::Session::SessionId
- ActionDispatch::Session::CookieStore::SessionId
- Defined in:
- lib/action_dispatch/middleware/session/cookie_store.rb
Instance Attribute Summary collapse
-
#cookie_value ⇒ Object
readonly
Returns the value of attribute cookie_value.
Instance Method Summary collapse
-
#initialize(session_id, cookie_value = {}) ⇒ SessionId
constructor
A new instance of SessionId.
Constructor Details
#initialize(session_id, cookie_value = {}) ⇒ SessionId
Returns a new instance of SessionId.
55 56 57 58 |
# File 'lib/action_dispatch/middleware/session/cookie_store.rb', line 55 def initialize(session_id, = {}) super(session_id) @cookie_value = end |
Instance Attribute Details
#cookie_value ⇒ Object (readonly)
Returns the value of attribute cookie_value.
53 54 55 |
# File 'lib/action_dispatch/middleware/session/cookie_store.rb', line 53 def @cookie_value end |