Skip to content

Instantly share code, notes, and snippets.

@aherve
Last active May 15, 2017 12:24
Show Gist options
  • Save aherve/afe5dba4bb79b3c81360ba7d92549987 to your computer and use it in GitHub Desktop.
Save aherve/afe5dba4bb79b3c81360ba7d92549987 to your computer and use it in GitHub Desktop.
exports.showUser = function (req, res) {
User.findOne({id: req.params.id}, (err, user) => {
if (err) { res.status(500).send({err}) }
if (user) {
res.status(200).send({user})
} else {
res.sendStatus(404)
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment