Merge pull request #1741 from sunaurus/cookie_path

Fix jwt cookie path
This commit is contained in:
SleeplessOne1917 2023-07-01 23:33:56 +00:00 committed by GitHub
commit f87dad3a5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,6 +38,7 @@ export class UserService {
secure: isHttps(), secure: isHttps(),
domain: location.hostname, domain: location.hostname,
sameSite: true, sameSite: true,
path: "/",
}); });
this.#setJwtInfo(); this.#setJwtInfo();
} }