summary refs log tree commit diff
path: root/api/src/util/passwordStrength.ts
diff options
context:
space:
mode:
Diffstat (limited to 'api/src/util/passwordStrength.ts')
-rw-r--r--api/src/util/passwordStrength.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/src/util/passwordStrength.ts b/api/src/util/passwordStrength.ts
index dfffa2c0..047df008 100644
--- a/api/src/util/passwordStrength.ts
+++ b/api/src/util/passwordStrength.ts
@@ -16,7 +16,7 @@ const blocklist: string[] = []; // TODO: update ones passwordblocklist is stored
  *
  * Returns: 0 > pw > 1
  */
-export function check(password: string): number {
+export function checkPassword(password: string): number {
 	const { minLength, minNumbers, minUpperCase, minSymbols } = Config.get().register.password;
 	var strength = 0;