They are usually called auth.settings.login_onaccept = lambda form: .. auth.settings.profile_onaccept = lambda form: .. auth.settings.<method>_onaccept = lambda form: ..
and they all take the form. the name exception is auth.settings.logout_onlogout - lambda user: ... because there is no form to fill on logout but there is a user. On Nov 9, 1:37 pm, Richard Vézina <[email protected]> wrote: > Nice approach so I could update a custom field in auth_user and put it true > or false at login and logout? > > How I may set my flag to true? > > Is there a auth.settings.login_onlogin ?? > > Thanks > > Richard > > On Wed, Nov 9, 2011 at 2:14 PM, Massimo Di Pierro < > > > > > > > > [email protected]> wrote: > > Sessions never end. Do you want to detect logout? > > > auth.settings.logout_onlogout = lambda user: do_something_with(user) > > > On Nov 9, 11:58 am, Sathvik Ponangi <[email protected]> wrote: > > > Is there someway that I could call a function when the user ends their > > > session?

