Khan / 이창민
Khan / 이창민
@AbanobNageh @micalevisk this works! I have confirmed that I can use such regular expressions to exclude specific pattern paths from the middleware. ```ts consumer .apply(AppMiddleware) .exclude({ path: '/:id(\\d+)', method: RequestMethod.GET...
and @satanshiro this code works, too! ```ts consumer .apply(AppMiddleware) .exclude({ path: 'all', method: RequestMethod.GET }) .exclude({ path: '/:id(\\d+)', method: RequestMethod.GET }) .forRoutes(AppController); ```
@micalevisk Hello, I am a university student from South Korea developing with NestJS. I would like to contribute to NestJS, but I am not sure where to start. Could you...
@AbanobNageh I think I found the cause of the issue. When `/:id` is entered, it receives the id in the format of `/1` or `/test`, and in such cases, it...
@dberardo-com Hi! If you haven't worked on this issue yet, would it be okay if I try it?
Thanks! I'll try it right away.