1
0
Fork 0

Server: fix status code when updating/removing a user

This commit is contained in:
Chocobozzz 2016-08-05 18:08:55 +02:00
parent 66af9ee16d
commit 10431358b2
1 changed files with 2 additions and 2 deletions

View File

@ -122,7 +122,7 @@ function removeUser (req, res, next) {
return next(err)
}
return res.type('json').status(204).end()
return res.sendStatus(204)
})
}
@ -134,7 +134,7 @@ function updateUser (req, res, next) {
user.save(function (err) {
if (err) return next(err)
return res.json('json').status(204).end()
return res.sendStatus(204)
})
})
}