I\'m currently developing a menu for my application that should be able to display only the controllers that the current user can access (requestmap defined in the database).
org.grails.plugins.springsecurity.service.AuthenticateService authenticateService = new org.grails.plugins.springsecurity.service.AuthenticateService() def isAdmin = authenticateService.ifAllGranted('ROLE_ADMIN') if(isAdmin) { println 'I am Admin' }