function remove(req, res, next) {
  const client = req.client;
  client.remove()
    .then(deletedClient => res.json(deletedClient))
    .catch(e => next(e));