Skip to content

Instantly share code, notes, and snippets.

@mockra
Created December 27, 2013 02:50
Show Gist options
  • Save mockra/8141935 to your computer and use it in GitHub Desktop.
Save mockra/8141935 to your computer and use it in GitHub Desktop.
var todos = require('./controllers/todos');
module.exports = function(app) {
app.get('/api/1/todos', todos.index);
app.post('/api/1/todos', todos.create);
app.put('/api/1/todos/:id', todos.update);
app.del('/api/1/todos/:id', todos.destroy);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment