refactor: remove debug log from token generation; update translations for password management in English and German

This commit is contained in:
2026-06-04 15:52:55 +02:00
parent c42bdea047
commit 98a8149300
3 changed files with 15 additions and 4 deletions
-1
View File
@@ -10,7 +10,6 @@ export async function generateToken(payload) {
.setIssuedAt()
.setExpirationTime("24h") // Token valid for 24 hours
.sign(secret);
console.log("Generated token: ", newToken);
return newToken;
}