From 1ead110a21f267d3ee7fd13f181595e464414685 Mon Sep 17 00:00:00 2001 From: Marc Wieland Date: Sat, 24 May 2025 20:31:05 +0200 Subject: [PATCH] Neuer Caroussel Code --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 1779fee..7babd72 100644 --- a/index.js +++ b/index.js @@ -165,7 +165,7 @@ const loginLimiter = rateLimit({ // Benutzer Login -app.post("/api/login", async (req, res) => { +app.post("/api/login", loginLimiter, async (req, res) => { const { username, password } = req.body; if (!username || !password) {