1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-05 10:22:31 +01:00

Make sure min password length is not null

This commit is contained in:
ngn 2023-06-11 13:36:51 +03:00
parent ece68990f8
commit 41f14b3ad8

View File

@ -225,11 +225,12 @@ router.post(
}
if (body.password) {
if(body.password.length < register.password.minLength){
const min = register.password.minLength ? register.password.minLength : 8;
if(body.password.length < min){
throw FieldErrors({
password: {
code: "PASSWORD_REQUIREMENTS_MIN_LENGTH",
message: req.t("auth:register.PASSWORD_REQUIREMENTS_MIN_LENGTH", { min: register.password.minLength })
message: req.t("auth:register.PASSWORD_REQUIREMENTS_MIN_LENGTH", { min: min })
}
});
}