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')
}
}