codeconsole opened a new pull request, #15526:
URL: https://github.com/apache/grails-core/pull/15526
Dramatically simplifies group url mappings by allowing parameter inheritance.
e.g.
```groovy
group "/api", namespace: 'api', controller: 'defaultCtrl', {
"/special"(controller: 'specialCtrl', action: 'handle') // overrides
controller
"/normal"(action: 'index') // inherits
controller
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]