class ActionController::Base

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).

Public Instance Methods

objsession() click to toggle source
# File lib/objectified_sessions.rb, line 154
def objsession
  @_objsession ||= ::ObjectifiedSessions::_create_new_objsession(session)
end