Class: ActionController::Base

Inherits:
Object
  • Object
show all
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

#objsessionObject



154
155
156
# File 'lib/objectified_sessions.rb', line 154

def objsession
  @_objsession ||= ::ObjectifiedSessions::_create_new_objsession(session)
end