GAE has its own authentication features:

from google.appengine.api import users
user = users.get_current_user()
if user:
    if users.is_current_user_admin():
        ...
    else:
        ...
else:
    users.create_login_url()


Has anyone tried integrating this with Auth?

Richard

-- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en.

Reply via email to