Statistics
| Revision:

root / web-presentation / trunk / eneraptor-web-presentation / grails-app / conf / UrlMappings.groovy @ 86

History | View | Annotate | Download (180 Bytes)

1 86 alexbesir
class UrlMappings {
2
3
        static mappings = {
4
                "/$controller/$action?/$id?"{
5
                        constraints {
6
                                // apply constraints here
7
                        }
8
                }
9
10
                "/"(view:"/index")
11
                "500"(view:'/error')
12
        }
13
}