Sign in
apache
/
grails-data-mapping
/
ecc608831967aee5f035b1bba28dee848aaa93e7
/
.
/
grails-data-hibernate5
/
examples
/
grails-hibernate
/
grails-app
/
controllers
/
functional
/
tests
/
UrlMappings.groovy
blob: 9cb56da194f7e4553bbbc84f836c4ab2acd4df5d [
file
] [
log
] [
blame
]
package
functional
.
tests
class
UrlMappings
{
static
mappings
=
{
"/$controller/$action?/$id?(.$format)?"
{
constraints
{
// apply constraints here
}
}
"/"
(
view
:
"/index"
)
"500"
(
view
:
'/error'
)
"404"
(
view
:
'/notFound'
)
}
}