TypeScript-Node-Starter icon indicating copy to clipboard operation
TypeScript-Node-Starter copied to clipboard

express validator isn't doing anything

Open CameronSima opened this issue 6 years ago • 0 comments
trafficstars

These lines wont do anything:

export const postLogin = (req: Request, res: Response, next: NextFunction) => { check("email", "Email is not valid").isEmail() check("password", "Password cannot be blank").isLength({min: 1})

the checks() are middleware, they need to be in the middleware chain, not in the middle of a function

CameronSima avatar Nov 17 '19 22:11 CameronSima