Sign in
apache
/
grails-data-mapping
/
ecc608831967aee5f035b1bba28dee848aaa93e7
/
.
/
grails-data-mongodb
/
examples
/
database-per-tenant
/
grails-app
/
controllers
/
UrlMappings.groovy
blob: 01d7bc911753f678414a06c08cf54c551690d9f2 [
file
] [
log
] [
blame
]
class
UrlMappings
{
static
mappings
=
{
"/$controller/$action?/$id?(.$format)?"
{
constraints
{
// apply constraints here
}
}
"/"
(
view
:
"/index"
)
"500"
(
view
:
'/error'
)
"404"
(
view
:
'/notFound'
)
}
}