Jackie McDoniel
Jackie McDoniel
Cool, wanted to rule that out. It looks like for every gateway class (a class decorated with `@WebSocketGateway()`), two disconnect handlers get bound to the `client` instance. One is a...
Please provide a [minimum reproduction repository](http://minimum-reproduction.wtf).
If I had to guess, this comes from the new use of `lastValueFrom` in RxJS v7. If there's no values in the Observable, then it will error out. [You can...
That could definitely be an issue as well. Because the proxy middleware is handling the response, when it gets back to Nest, Nest tries to send a response too, and...
Specifically for the `AuthGuard` yes, but if that was just an example and we wanted to take this to a higher level (all child classes have separate DI metadata) then...
@cojack this sounds really interesting. Is this something that can be made as a third party package, or does the `@nestjs/commmon` and `@nestjs/core` packages need to have modifications?
This sounds like it could be useful. Is there any reason why you couldn't use `res.render()` in a filter after throwing an error? In the meantime, if you don't mind...
@kamilmysliwiec could we do something similar to the `@Redirect()` decorator, where we read `data.url` of the response if it is to be a dynamic response, and if not just use...
This seems interesting. What's the main difference between this and something like OpenAPI with choice generators to create calls from swagger files?
Thanks for bringing this back up. I think this looks really cool, and I could see it being pretty useful. My concern is adding it to the main codebase as...