export default (req, res, next) => {
  const { articleId } = req.params;

  const schema = {
    articleId: Joi.number().positive().required()