Skip to content

Instantly share code, notes, and snippets.

@eduardodaluz
Created April 3, 2012 13:09
Show Gist options
  • Save eduardodaluz/2291862 to your computer and use it in GitHub Desktop.
Save eduardodaluz/2291862 to your computer and use it in GitHub Desktop.
class UrlMappings {
static mappings = {
"/login/$action?"(controller: "login")
"/logout/$action?"(controller: "logout")
"/$controller/$action?/$id?"{
constraints {
// apply constraints here
}
}
"/"(view:"/index")
"500"(view:'/error')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment