Changeset 288 for trunk/grails-app/controllers
- Timestamp:
- Jan 22, 2010, 8:52:22 AM (15 years ago)
- Location:
- trunk/grails-app/controllers
- Files:
-
- 1 deleted
- 1 edited
- 6 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/DepartmentDetailedController.groovy
r287 r288 1 1 import org.codehaus.groovy.grails.plugins.springsecurity.Secured 2 2 3 class DepartmentController extends BaseAppAdminController { 3 @Secured(['ROLE_Manager','ROLE_AppAdmin']) 4 class DepartmentDetailedController extends BaseController { 4 5 5 6 def index = { redirect(action:list,params:params) } -
trunk/grails-app/controllers/DepartmentExtendedAttributeDetailedController.groovy
r287 r288 1 1 import org.codehaus.groovy.grails.plugins.springsecurity.Secured 2 2 3 class DepartmentExtendedAttributeController extends BaseAppAdminController { 4 3 @Secured(['ROLE_Manager','ROLE_AppAdmin']) 4 class DepartmentExtendedAttributeDetailedController extends BaseController { 5 5 6 def index = { redirect(action:list,params:params) } 6 7 -
trunk/grails-app/controllers/ExtendedAttributeTypeDetailedController.groovy
r287 r288 1 1 import org.codehaus.groovy.grails.plugins.springsecurity.Secured 2 2 3 class ExtendedAttributeTypeController extends BaseAppAdminController { 3 @Secured(['ROLE_Manager','ROLE_AppAdmin']) 4 class ExtendedAttributeTypeDetailedController extends BaseController { 4 5 5 6 def index = { redirect(action:list,params:params) } -
trunk/grails-app/controllers/SectionDetailedController.groovy
r268 r288 1 1 import org.codehaus.groovy.grails.plugins.springsecurity.Secured 2 2 3 @Secured(['ROLE_Manager','ROLE_AppAdmin']) 3 4 class SectionDetailedController extends BaseController { 4 5 -
trunk/grails-app/controllers/SectionExtendedAttributeDetailedController.groovy
r287 r288 1 1 import org.codehaus.groovy.grails.plugins.springsecurity.Secured 2 2 3 class SectionExtendedAttributeController extends BaseAppAdminController { 3 @Secured(['ROLE_Manager','ROLE_AppAdmin']) 4 class SectionExtendedAttributeDetailedController extends BaseController { 4 5 5 6 def index = { redirect(action:list,params:params) } -
trunk/grails-app/controllers/SiteDetailedController.groovy
r287 r288 1 1 import org.codehaus.groovy.grails.plugins.springsecurity.Secured 2 2 3 class SiteController extends BaseAppAdminController { 3 @Secured(['ROLE_Manager','ROLE_AppAdmin']) 4 class SiteDetailedController extends BaseController { 4 5 5 6 def index = { redirect(action:list,params:params) } -
trunk/grails-app/controllers/SiteExtendedAttributeDetailedController.groovy
r287 r288 1 1 import org.codehaus.groovy.grails.plugins.springsecurity.Secured 2 2 3 class SiteExtendedAttributeController extends BaseAppAdminController { 3 @Secured(['ROLE_Manager','ROLE_AppAdmin']) 4 class SiteExtendedAttributeDetailedController extends BaseController { 4 5 5 6 def index = { redirect(action:list,params:params) }
Note: See TracChangeset
for help on using the changeset viewer.