Youngho Kim

Results 14 comments of Youngho Kim

@snjeza I tried the command. It seems that the file was downloaded properly through the proxy ```bash $ ls -l test.pom -rw-rw-r-- 1 root root 3403 7월 12 03:00 test.pom...

@snjeza Wow, it worked. Thank you very much for helping me solve problem.

@jiho-kr Are there any ongoing efforts related to this issue? Can I work on it? :)

Constructing an exclude pattern using regular expressions to omit “all” could be a viable solution like below. ```ts consumer .apply(AppMiddleware) .exclude({ path: '/:id((?!all$).*)', method: RequestMethod.GET }) .forRoutes(AppController); ``` However, unfortunately,...

@AbanobNageh Since the version upgrade is unavailable, you might need to write a regular expression for `exclude` to filter out only the id. Your business logic or table schema may...

@AbanobNageh For Firestore’s automatically generated IDs, they all share the common characteristic of being length of 20 and using URL-safe base64 alphabet. Therefore, I think a regular expression like the...

> In addition, I have another concern. Even if the library `path-to-regexp` is updated wouldn't this still mean that the solution would still be to manually exclude specific paths from...

It seems that breaking changes about this issue was done in #3042. Previously it simply excluded routes listed in `exclude` from `forRoutes`. However, after the changes, the middleware now skips...

@jpage-godaddy Since the `Swagger Module` is registered and executed separately from the AppModule, any middleware registered in the AppModule will not apply to the Swagger routes. The middleware registered through...

Hello! In `UserProfile` entity, you have applied both `PrimaryColumn` and `OneToOne` to the user property, with the type of user being a string instead of the related entity type. I...