Register yourself
You can then disable registration via:
auth.settings.actions_disabled.append('register')
You can register other people via appadmin or make your own action
@auth.requires_memmebership('administrator')
def register(): return dict(form=crud.create(db.auth_user))
Once you have auth in place they way you want check out the chat
example in
gluon/contrib/comet_messaging.py
It comes with web2py uses web2py auth, provides chat with html5
websockets and chat rooms.
On Apr 2, 3:03 am, RAMKRISHAN BHATT BACK IN ACTION in bangalore
<[email protected]> wrote:
> HI
> i am new in web2py. i developing student management system where
> these are the major functionality.
> 1. admin only can register for other admin people and student
> group.
> 2. only login url will be there by default.
> 3. after login if admin than registration url suppose to there
> for register other user with permission.
> 4 after login one chat home must be there for every body.
>
> please guide me to develop this system and also it must be portable
> with GAE.
>
> Thanks