mirror of
https://github.com/spacebarchat/server.git
synced 2026-08-22 16:20:12 +00:00
Implemented password length check
This commit is contained in:
@@ -225,6 +225,14 @@ router.post(
|
||||
}
|
||||
|
||||
if (body.password) {
|
||||
if(body.password.length<8){
|
||||
throw FieldErrors({
|
||||
password: {
|
||||
code: "PASSWORD_REQUIREMENTS_MIN_LENGTH",
|
||||
message: req.t("auth:register.PASSWORD_REQUIREMENTS_MIN_LENGTH")
|
||||
}
|
||||
});
|
||||
}
|
||||
// the salt is saved in the password refer to bcrypt docs
|
||||
body.password = await bcrypt.hash(body.password, 12);
|
||||
} else if (register.password.required) {
|
||||
|
||||
Reference in New Issue
Block a user