mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 01:33:33 +00:00
Enforce master password policy (#79)
* Enforce master password policy * Updated based on requested changes/discussions
This commit is contained in:
10
src/models/domain/masterPasswordPolicyOptions.ts
Normal file
10
src/models/domain/masterPasswordPolicyOptions.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import Domain from './domainBase';
|
||||
|
||||
export class MasterPasswordPolicyOptions extends Domain {
|
||||
minComplexity: number = 0;
|
||||
minLength: number = 0;
|
||||
requireUpper: boolean = false;
|
||||
requireLower: boolean = false;
|
||||
requireNumbers: boolean = false;
|
||||
requireSpecial: boolean = false;
|
||||
}
|
||||
Reference in New Issue
Block a user