bigbluebutton-Github/record-and-playback/playback-web/grails-app/conf/UrlMappings.groovy
2010-07-19 12:16:11 -04:00

12 lines
196 B
Groovy

class UrlMappings {
static mappings = {
"/$controller/$action?/$id?"{
constraints {
// apply constraints here
}
}
"/"(view:"/index")
"500"(view:'/error')
}
}