Tags: samofprog/nestjs-password-validator
Tags
feat: add independent decorators for password validation and update c… …hangelog (#2) - Introduced individual decorators for each password validation rule: - `@PasswordMinLength()` - `@PasswordMaxLength()` - `@PasswordHasUpperCase()` - `@PasswordHasLowerCase()` - `@PasswordHasNumbers()` - `@PasswordHasSpecialChars()` - `@PasswordBlacklist()` - `@ConfirmPassword()` - Update readme - Updated the changelog to reflect the new decorator-based validation approach.