El martes, 7 de enero de 2014 14:40:38 UTC-3, Giuseppe D'Amico escribió:
>
> Hi, I am new with web2py, is there a way to intercept  the closing of a 
> session?
>

You mean you want to catch a user logout from the scaffolding app?

You could modify the user action at controllers.py so it checks wether the 
"logout" action was asked:

def user():
    if request.args[0] == "logout":
        <do something>

There's also the auth.settings.logout_onlogout which can be a function that 
receives auth.user as argument (undocumented) and auth.settings.logout_next 
(a URL for redirection after logout).

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to