From 4afaad8b617af5da649caeb15524958315ad9bbc Mon Sep 17 00:00:00 2001 From: Arlind Ukshini Date: Mon, 27 Apr 2026 10:49:06 +0200 Subject: [PATCH] sessions: issueSession returns the new session id --- src/sessions.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sessions.js b/src/sessions.js index 9f6b38b..51913ea 100644 --- a/src/sessions.js +++ b/src/sessions.js @@ -35,6 +35,7 @@ export function issueSession(req, res, email) { path: '/', maxAge: SESSION_TTL_MS, }); + return id; } export function clearSession(req, res) {