Skip to content

Instantly share code, notes, and snippets.

@ebourmalo
Last active August 29, 2015 14:27
Show Gist options
  • Save ebourmalo/3fe24637cde4d9a21bf5 to your computer and use it in GitHub Desktop.
Save ebourmalo/3fe24637cde4d9a21bf5 to your computer and use it in GitHub Desktop.
module.exports = function(app) {
var resourcePath = '/api/questions';
router
.get('/', findQuestions)
.post('/', createQuestion)
.get('/:questionId', getQuestion)
.delete('/:questionId', deleteQuestion)
.get('/:id/answers', findAnswers)
.post('/:id/answers', addAnswer);
app.use(resourcePath, auth.isAuthenticated, router);
};
// controller methods next
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment