I am trying out authentication using playframework's secure module.I have two users -one an admin,the other with normal previleges.They are defined as
User(adminuser):
email: siteadmin@mysite.com
password: secret
isAdmin: true
User(normaluser):
email: normaluser@gmail.com
password: normalpass
I want only admin user to be able to login to the admin area and create entities using the crud interface.How should I go about this?
* /admin module:crud
brings up a login screen which adfter login from above two users ,take them to the admin area.How can I restrict entry to the admin area to only the admin user, and tell the normal user that he doesn't have enough rights to access the admin area?