Skip to content

Instantly share code, notes, and snippets.

@mtrpcic
Created December 11, 2012 18:05
Show Gist options
  • Save mtrpcic/4260702 to your computer and use it in GitHub Desktop.
Save mtrpcic/4260702 to your computer and use it in GitHub Desktop.
var UsersController = {
"index": function(){
},
"show": function(){
}
"new": function(){
}
}
Path.map("/users").to(UsersController.index);
Path.map("/user/:id").to(UsersController.show);
Path.map("/user/new").to(UsersController.new);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment