return 200 from server on successful delete

This commit is contained in:
Daniela Arcese 2017-06-08 17:38:00 -04:00
parent 90809bf05d
commit 42be528c90
1 changed files with 1 additions and 0 deletions

View File

@ -100,6 +100,7 @@ app.post('/delete/:id', (req, res) => {
.then(err => { .then(err => {
if (!err) { if (!err) {
console.log('Deleted.'); console.log('Deleted.');
res.sendStatus(200);
} }
}) })
.catch(err => res.sendStatus(404)); .catch(err => res.sendStatus(404));