Timo Mätäsaho
Results
2
comments of
Timo Mätäsaho
I am having similar issue. If having a custom auth middleware injecting to `res.locals` the `validateRequest` somehow loses all the types from `req` and `res`. However, if the auth middleware...
My original auth middleware was roughly like this ```typescript const authMW = async (req: express.Request, res: express:Response, next: NextFunction) => { try { // Do things const authInfo = await...