Feature disable password login #378

Merged
LukeGus merged 6 commits from feature-disable-password-login into dev-1.8.0 2025-10-08 00:59:44 +00:00
Showing only changes of commit 37a2f7013d - Show all commits
+2 -1
View File
2
@@ -858,10 +858,11 @@ router.post("/login", async (req, res) => {
.json({ error: "Password authentication is currently disabled" }); .json({ error: "Password authentication is currently disabled" });
} }
} catch (e) { } catch (e) {
authLogger.warn("Failed to check password login status", { authLogger.error("Failed to check password login status", {
operation: "login_check", operation: "login_check",
error: e, error: e,
}); });
return res.status(500).json({ error: "Failed to check login status" });
} }
try { try {
2