Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created October 8, 2017 19:28
Show Gist options
  • Save NMZivkovic/6d595e84ab4e9028392b7db17315bcf7 to your computer and use it in GitHub Desktop.
Save NMZivkovic/6d595e84ab4e9028392b7db17315bcf7 to your computer and use it in GitHub Desktop.
router.post('/deleteUser', function(req, res, next) {
User.remove({_id : req.body.id}, function(err) {
if (err) {
console.log("not removed!");
res.status(400);
res.send();
}
console.log("removed!");
res.send({status: 'ok'});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment