Changeset 369 for trunk/grails-app/controllers
- Timestamp:
- Feb 17, 2010, 10:36:16 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/AssetSubItemDetailedController.groovy
r359 r369 98 98 @Secured(['ROLE_AppAdmin', 'ROLE_Manager', 'ROLE_AssetManager', 'ROLE_AssetUser']) 99 99 def show = { 100 101 // In the case of an actionSubmit button, rewrite action name from 'index'. 102 if(params._action_Show) 103 { params.action='show' } 104 100 105 def assetSubItemInstance = AssetSubItem.get( params.id ) 101 106 … … 127 132 128 133 def edit = { 134 135 // In the case of an actionSubmit button, rewrite action name from 'index'. 136 if(params._action_Edit) 137 { params.action='edit' } 138 129 139 def assetSubItemInstance = AssetSubItem.get( params.id ) 130 140
Note: See TracChangeset
for help on using the changeset viewer.