Skip to content

Commit e9965ab

Browse files
committed
TEMP: add hardcoded domain to session cookie setter
1 parent 8482c0f commit e9965ab

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/client/modules/lib/kb_lib/Auth2Session.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,7 @@ export class Auth2Session {
649649
setSessionCookie(token: string, expiration: number) {
650650
const sessionCookie = new Cookie(this.cookieName, token)
651651
.setPath('/')
652+
.setDomain('ci-europa.kbase.us')
652653
.setSecure(true);
653654

654655
sessionCookie.setExpires(new Date(expiration).toUTCString());

0 commit comments

Comments
 (0)