Changeset 627 for trunk/grails-app/controllers
- Timestamp:
- Jul 14, 2010, 10:46:04 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/AppCoreController.groovy
r622 r627 132 132 * Render the manager view for manager or admin roles. 133 133 */ 134 @Secured(['ROLE_AppAdmin', 'ROLE_Manager']) 134 @Secured(['ROLE_AppAdmin', 'ROLE_Manager', 'ROLE_TaskManager', 135 'ROLE_InventoryManager', 'ROLE_AssetManager', 'ROLE_ProductionManager']) 135 136 def manager = { 136 137 } … … 244 245 * Render the application log file. 245 246 */ 246 @Secured(['ROLE_AppAdmin', 'ROLE_Manager']) 247 @Secured(['ROLE_AppAdmin', 'ROLE_Manager', 'ROLE_TaskManager', 248 'ROLE_InventoryManager', 'ROLE_AssetManager', 'ROLE_ProductionManager']) 247 249 def appLog = { 248 250 def file = new File(ConfigurationHolder.config.log4j.appenders.appLog.file) … … 255 257 * Rebuild the text search index. 256 258 */ 257 @Secured(['ROLE_AppAdmin', 'ROLE_Manager']) 259 @Secured(['ROLE_AppAdmin', 'ROLE_Manager', 'ROLE_TaskManager', 260 'ROLE_InventoryManager', 'ROLE_AssetManager', 'ROLE_ProductionManager']) 258 261 def rebuildTextSearchIndex = { 259 262 InventoryIndexJob.triggerNow(['calledBy':'AppCoreController rebuildTextSearchIndex{}'])
Note: See TracChangeset
for help on using the changeset viewer.