From 247b61f81bd899ffe684e2e1c3effa5779b29088 Mon Sep 17 00:00:00 2001 From: Mitchell Magro Date: Sat, 25 Oct 2025 08:01:17 +0200 Subject: [PATCH] Testing --- app/api/auth/login/route.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/app/api/auth/login/route.tsx b/app/api/auth/login/route.tsx index 3c66c7c..32aaf4e 100644 --- a/app/api/auth/login/route.tsx +++ b/app/api/auth/login/route.tsx @@ -5,7 +5,6 @@ import { SignJWT } from "jose"; // Secret key for JWT signing (in production, use environment variable) const JWT_SECRET = new TextEncoder().encode(process.env.JWT_SECRET); -// Token expiration time (in seconds) const TOKEN_EXPIRY = 60 * 60 * 12; // 12 hours (in seconds) // This is your POST handler for the login endpoint