Changeset 71 for branches/TaskRewrite/src/grails-app/conf
- Timestamp:
- Mar 10, 2009, 3:00:59 AM (16 years ago)
- Location:
- branches/TaskRewrite/src/grails-app/conf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/TaskRewrite/src/grails-app/conf/BootStrap.groovy
r69 r71 63 63 def authInstance 64 64 65 authInstance = new Authority(description:"Application Admin ",66 authority:"ROLE_A DMIN")65 authInstance = new Authority(description:"Application Admin, grants full admin access to the application.", 66 authority:"ROLE_AppAdmin") 67 67 BootStrapSaveAndTest(authInstance) 68 68 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") 71 71 BootStrapSaveAndTest(authInstance) 72 72 -
branches/TaskRewrite/src/grails-app/conf/SecurityConfig.groovy
r69 r71 20 20 21 21 //Set true especially if used across the internet. 22 forceHttps = ' true'22 forceHttps = 'false' 23 23 24 24 //Pessimistic locking, deny access to all URLs that don't
Note: See TracChangeset
for help on using the changeset viewer.