As far as I can tell, there is no easy way to do this.
You can introduce an instance of grails AuthenticatedVetoableDecisionManager, which is the concrete class spring AbstractAccessDecisionManager, by doing the following:
def accessDecisionManager
It has a solution method that takes 3 parameters
decide(Authentication authentication, Object object, ConfigAttributeDefinition config)
This is probably the method that you will need to call and pass in the correct order to find out if a user with authorization can access this "object" (which usually looks like a request / response). Some additional digging may be useful here.
In the short term, it is probably easier to use taglib ifAnyGranted, as another poster mentions.
Ted naleid
source share