login attempts

This commit is contained in:
jackiettran
2025-12-28 12:43:10 -05:00
parent 2e18137b5b
commit e153614993
2 changed files with 2 additions and 2 deletions

View File

@@ -176,7 +176,7 @@ User.prototype.comparePassword = async function (password) {
};
// Account lockout constants
const MAX_LOGIN_ATTEMPTS = 5;
const MAX_LOGIN_ATTEMPTS = 10;
const LOCK_TIME = 2 * 60 * 60 * 1000; // 2 hours
// Check if account is locked