Skip to content

Instantly share code, notes, and snippets.

@CreaturePhil
Created February 17, 2015 02:16
Show Gist options
  • Save CreaturePhil/db49538379cafbe61c9c to your computer and use it in GitHub Desktop.
Save CreaturePhil/db49538379cafbe61c9c to your computer and use it in GitHub Desktop.
router.post('/', function(req, res) {
if (!req.body.title || !req.body.text) {
return res.redirect('/');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment