app.get('/:id', authenticateUser, adminRequired, function (req, res) {
  res.status(200).send(req.foundUser)
})