Files
auth/src/modules/authentication/authentication.constants.ts
2023-10-09 15:20:52 +02:00

10 lines
217 B
TypeScript

import { IsStrongPasswordOptions } from 'class-validator';
export const STRONG_PASSWORD_OPTIONS: IsStrongPasswordOptions = {
minLength: 8,
minLowercase: 1,
minNumbers: 1,
minSymbols: 1,
minUppercase: 1,
};