Skip to content

Instantly share code, notes, and snippets.

@samfoo
Created July 25, 2014 01:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samfoo/be0e56c815466e39b53f to your computer and use it in GitHub Desktop.
Save samfoo/be0e56c815466e39b53f to your computer and use it in GitHub Desktop.
var routes = function(router, actions) {
router.get("/", actions.root);
router.post("/campaigns", actions.campaigns.create);
router.get("/campaigns/new", actions.campaigns.form);
router.get("/campaigns/:id", actions.campaigns.show);
};
module.exports = routes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment