return User.create(req.body)
            .then(user => res.status(201).json(user))
            .catch(next)