Add validation on route Register

This commit is contained in:
2021-04-08 02:07:49 +02:00
parent 33a8cdb169
commit 9511331cd2
4 changed files with 42 additions and 4 deletions

View File

@@ -19,4 +19,4 @@ fun String.passwordScore(): Int {
score += (hasAlphaLower + hasAlphaUpper + hasNum - 2) * 2
return score
}
}