1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-22 02:12:40 +01:00

Don't let users undisable their accounts

This commit is contained in:
Madeline 2023-01-01 12:59:45 +11:00
parent 4b518774b1
commit 52840f4f98
No known key found for this signature in database
GPG Key ID: 80D25DA3BCB24281

View File

@ -66,9 +66,6 @@ router.post(
});
if (undelete) {
// undelete refers to un'disable' here
if (user.disabled)
await User.update({ id: user.id }, { disabled: false });
if (user.deleted)
await User.update({ id: user.id }, { deleted: false });
} else {
@ -77,13 +74,14 @@ router.post(
message: "This account is scheduled for deletion.",
code: 20011,
});
if (user.disabled)
return res.status(400).json({
message: req.t("auth:login.ACCOUNT_DISABLED"),
code: 20013,
});
}
if (user.disabled)
return res.status(400).json({
message: req.t("auth:login.ACCOUNT_DISABLED"),
code: 20013,
});
// the salt is saved in the password refer to bcrypt docs
const same_password = await bcrypt.compare(
password,