correct incognito mode impl

This commit is contained in:
Archeb
2024-07-21 19:34:31 +08:00
parent b61bed87f1
commit ee9719f094
2 changed files with 8 additions and 1 deletions
+8
View File
@@ -75,6 +75,14 @@ function getSessionCookie(jwtSession, jwtToken) {
secure: true,
sameSite: "Lax",
},
{
name: "incognito",
value: "true",
domain: "you.com",
path: "/",
expires: 1800000000,
secure: true,
}
];
}