mirror of
https://gitlab.com/mobicoop/v3/service/auth.git
synced 2026-01-04 13:52:41 +00:00
10 lines
217 B
TypeScript
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,
|
|
};
|