Soham Adhyapak

Results 3 comments of Soham Adhyapak

is the issue still open? i can work on it

Try something like this, it might work ``` const { param, validationResult } = require("express-validator"); router.get("/:userId", [ param("userId").isInt(), ], (req, res) => { const errors = validationResult(req); if (!errors.isEmpty()) {...

Is the issue still open? Can i try?