Brage Sekse Aarset
Brage Sekse Aarset
Hello there! I am interested in resolving this issue and would be happy to contribute. Here is an overview over the exact changes that were made 2018-2020: | Old states...
I'll start a PR this week.
Thanks for the reply, that is very helpful
I probably won't be working on this, so feel free, anyone :)
Have you looked into `ValidateIf`? example: ```ts export class Person { @IsString() @IsOptional() name?: string; @ValidateIf((person: Person) => Boolean(person.name)) @IsString() @MinLength(4) @MaxLength(8) @IsOptional() nickname?: number; } ``` if `name` is...
I hope it works! I'm not sure if you can somehow validate against the decorators of `name` inside the `ValidateIf` function. That would be sweet. I suppose it should be...
I suppose it's relevant to tag the other Typestack folks: @saulotoledo @jotamorais @MichalLytek @rustamwin
> and get their authors to close them By this I meant getting people to close their own issues since we have no active maintainers to do it for them.
Us regular folks are not able to set labels on other people's issues, so the best we can do it to vote with thumbs up reactions, or perhaps create some...
I made an epic that tracks feature PRs for new validators #1747