Skip to content

Instantly share code, notes, and snippets.

@cloudhead
Created May 30, 2010 16:17
Show Gist options
  • Save cloudhead/419136 to your computer and use it in GitHub Desktop.
Save cloudhead/419136 to your computer and use it in GitHub Desktop.
map.path('/domain', function () {
this.get(); // match 'GET /domain'
this.root; // match 'GET /domain/'
this.get('/info'); // match 'GET /domain/info'
this.path('/users', function () {
this.post(); // match 'POST /domain/users'
this.get(); // match 'GET /domain/users'
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment