users.create(req.body, req.user)
    .then(newUser => {
      res.status(201).json(newUser);
    })
    .catch(error => {