mirror of
https://github.com/Prominence/grails-translations-plugin.git
synced 2026-01-09 19:06:41 +03:00
14 lines
245 B
Groovy
14 lines
245 B
Groovy
class UrlMappings {
|
|
|
|
static mappings = {
|
|
"/$controller/$action?/$id?(.$format)?"{
|
|
constraints {
|
|
// apply constraints here
|
|
}
|
|
}
|
|
|
|
"/"(view:"/index")
|
|
"500"(view:'/error')
|
|
}
|
|
}
|