And my class validation: export class SuperToken...
# support-questions-legacy
w
And my class validation: export class SuperTokensUsersPipe { @isEmail() email: string; @MinLength(9) @Matches(/[A-Z]+/g) @Matches(/[a-ząćęłńóśźżĄĘŁŃÓŚŹŻぁ-んァ-ヾ一-龯]*/g) @Matches(/[0-9]+/g) @Matches(/[#?!@$%^&*-]+/g) @isNotEmpty() password: string; }
2 Views