summary refs log tree commit diff
path: root/src/util/config/types/subconfigurations/register/Password.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/config/types/subconfigurations/register/Password.ts')
-rw-r--r--src/util/config/types/subconfigurations/register/Password.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util/config/types/subconfigurations/register/Password.ts b/src/util/config/types/subconfigurations/register/Password.ts
new file mode 100644
index 00000000..977473ac
--- /dev/null
+++ b/src/util/config/types/subconfigurations/register/Password.ts
@@ -0,0 +1,7 @@
+export class PasswordConfiguration {
+    required: boolean = false;
+    minLength: number = 8;
+    minNumbers: number = 2;
+    minUpperCase: number =2;
+    minSymbols: number = 0;
+}
\ No newline at end of file