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.

Location:
branches/TaskRewrite/src/grails-app/conf
Files:
2 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           
  • branches/TaskRewrite/src/grails-app/conf/SecurityConfig.groovy

    r69 r71  
    2020
    2121    //Set true especially if used across the internet.
    22     forceHttps = 'true'
     22    forceHttps = 'false'
    2323
    2424    //Pessimistic locking, deny access to all URLs that don't
Note: See TracChangeset for help on using the changeset viewer.