summary refs log tree commit diff
path: root/src/util/config/types/subconfigurations/register/Password.ts
blob: 977473ac4dabe071993d8a7b0241081aa83c9a90 (plain) (blame)
1
2
3
4
5
6
7
export class PasswordConfiguration {
    required: boolean = false;
    minLength: number = 8;
    minNumbers: number = 2;
    minUpperCase: number =2;
    minSymbols: number = 0;
}