I create controlller security and action rights().
class SecurityController {
static defaultAction = "rights"
def rights() {
new Requestmap(url:"/user/enterPage/**", configAttribute: "permitAll").save(flush: true)
render "Success"
}
After I write this url:"/security/rights" in browser. All good, but after I write this url:"/user/enterPage", then I can't get access. Why? How to fix this?
Sorry for my English.