fixed Reference to http://..../[app]/default/user/manage_users in welcome's default controller #1102

This commit is contained in:
mdipierro
2015-12-04 11:24:00 -06:00
parent 71ae754fcd
commit 7dd8a3c853

View File

@@ -29,12 +29,12 @@ def user():
http://..../[app]/default/user/profile
http://..../[app]/default/user/retrieve_password
http://..../[app]/default/user/change_password
http://..../[app]/default/user/manage_users (requires membership in
http://..../[app]/default/user/bulk_register
use @auth.requires_login()
@auth.requires_membership('group name')
@auth.requires_permission('read','table name',record_id)
to decorate functions that need access control
also notice there is http://..../[app]/appadmin/manage/auth to allow administrator to manage users
"""
return dict(form=auth())