Ignore:
Timestamp:
Mar 10, 2009, 3:00:59 AM (15 years ago)
Author:
gav
Message:

Start changing roles to AppAdmin? and AppUser?.
Add Options view, start code for user changeable passwords.
Repair home and admin bean error variables.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/TaskRewrite/src/grails-app/conf/BootStrap.groovy

    r69 r71  
    6363        def authInstance
    6464
    65         authInstance = new Authority(description:"Application Admin",
    66                                         authority:"ROLE_ADMIN")
     65        authInstance = new Authority(description:"Application Admin, grants full admin access to the application.",
     66                                        authority:"ROLE_AppAdmin")
    6767        BootStrapSaveAndTest(authInstance)
    6868
    69         authInstance = new Authority(description:"Application Admin",
    70                                         authority:"ROLE_USER")
     69        authInstance = new Authority(description:"Application User, all application users need this base role.",
     70                                        authority:"ROLE_AppUser")
    7171        BootStrapSaveAndTest(authInstance)
    7272           
Note: See TracChangeset for help on using the changeset viewer.