source: branches/util-apps/DomainUtil/grails-app/conf/UrlMappings.groovy @ 907

Last change on this file since 907 was 907, checked in by gav, 13 years ago

Upgrade branches/util-apps/DomainUtil to Grails-1.3.7.

File size: 180 bytes
Line 
1class 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}
Note: See TracBrowser for help on using the repository browser.