patricknazar
patricknazar
**Describe the bug** The Ant Design theme works ok in the website demo, but not in a modified stackblitz example or in my app **Reproducible example** [Example](https://stackblitz.com/edit/angular-sdwjvr?file=styles.css) **To Reproduce** Hover...
As per [the auth docs](https://docs.sst.dev/auth#create-a-token) you can create a token directly without using a redirect. I noticed that there is no real-world example of this, and I would like there...
I've been trying to use `@Type()` with itself: ``` import { Type } from 'class-transformer'; class User { @Type(() => User, { discriminator: { property: 'type', subTypes: [ { value:...
How can I deal with the situation where a user's info/profile/permissions have changed? It seems that the user json object is only received upon login.
Is it possible for me to have a `plainToClass(Vehicle, v)` call return either a `Car` class or `Train` depending on it's `type` property? I know this is similar to `discriminator`...