matrei commented on PR #15252:
URL: https://github.com/apache/grails-core/pull/15252#issuecomment-3566664982
Will this actually change the rendered links?
I tried it, and with two controllers:
```groovy
package com.example
class DemoController {
def index() {
render 'DEMO'
}
}
```
and
```groovy
package com.example.test
class DemoController {
static namespace = 'custom'
def index() {
render 'CUSTOM/DEMO'
}
}
```
both controller links generated by `index.gsp` point to `/demo/index`,
regardless of the changes in this PR.
I might be misunderstanding something, I have not worked much with
namespaced controllers.
--
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]