summary refs log tree commit diff
path: root/src/util/Constants.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/Constants.ts')
-rw-r--r--src/util/Constants.ts14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/util/Constants.ts b/src/util/Constants.ts

index 35d11615..84012071 100644 --- a/src/util/Constants.ts +++ b/src/util/Constants.ts
@@ -71,6 +71,12 @@ export interface DefaultOptions { requireInvite: boolean; allowNewRegistration: boolean; allowMultipleAccounts: boolean; + password: { + pwMinLength: number; + pwMinNumbers: number; + pwMinUpperCase: number; + pwMinSymbols: number; + }; }; } @@ -123,7 +129,7 @@ export const DefaultOptions: DefaultOptions = { required: true, allowlist: false, blocklist: true, - domains: [], // TODO: efficicently save domain blocklist in database + domains: [], // TODO: efficiently save domain blocklist in database // domains: fs.readFileSync(__dirname + "/blockedEmailDomains.txt", { encoding: "utf8" }).split("\n"), }, dateOfBirth: { @@ -134,6 +140,12 @@ export const DefaultOptions: DefaultOptions = { requireCaptcha: true, allowNewRegistration: true, allowMultipleAccounts: true, + password: { + pwMinLength: 8, + pwMinNumbers: 2, + pwMinUpperCase: 2, + pwMinSymbols: 0, + }, }, };