ljlm0402 / typescript-express-starter

📘 Quick and Easy TypeScript Express Starter
http://npm.im/typescript-express-starter
MIT License
2.73k stars 420 forks source link

How to apply authMiddleware for all the routes in userRoute? #196

Open cuongnv-dev opened 1 year ago

cuongnv-dev commented 1 year ago

Summary (요약)

How to apply authMiddleware for all the routes in userRoute?

Additional Details (추가적인 세부 사항)

I want to apply authMiddleware for all the routes in userRoute, currently I were add authMiddleware inside each route.

dap23 commented 1 year ago

private initializeRoutes() { this.router.use(/Your middleware/) }

hope this can help