Files

10 lines
259 B
JavaScript
Raw Permalink Normal View History

2025-05-19 21:27:10 -04:00
const { validationResult } = require('express-validator');
module.exports = (req, res, next) => {
const errors = validationResult(req);
if (!errors.isEmpty()) {
return res.status(400).json({ errors: errors.array() });
}
next();
}
2025-05-22 18:33:00 -04:00
//IO