module Authpds::Session::AuthlogicCallbacks
Protected Instance Methods
persist_session()
click to toggle source
Callback method from Authlogic. Called while trying to persist the session.
# File lib/authpds/session/authlogic_callbacks.rb, line 6 def persist_session destroy unless (authenticated? and authorized?) or anonymous? end