Class: ActionController::Base
- Inherits:
-
Object
- Object
- ActionController::Base
- Defined in:
- lib/objectified_sessions.rb
Overview
This is what actually makes #objsession in a controller work. Returns an instance of whatever class you have specified as your objectified-session class (usually just named Objsession).
Instance Method Summary collapse
Instance Method Details
#objsession ⇒ Object
154 155 156 |
# File 'lib/objectified_sessions.rb', line 154 def objsession @_objsession ||= ::ObjectifiedSessions::_create_new_objsession(session) end |