summaryrefslogtreecommitdiff
path: root/src/token
diff options
context:
space:
mode:
Diffstat (limited to 'src/token')
-rw-r--r--src/token/extract/identity_token.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/token/extract/identity_token.rs b/src/token/extract/identity_token.rs
index 0a47a43..a1e900e 100644
--- a/src/token/extract/identity_token.rs
+++ b/src/token/extract/identity_token.rs
@@ -51,7 +51,7 @@ impl IdentityToken {
let secret = secret.into().reveal();
let identity_cookie = Cookie::build((IDENTITY_COOKIE, secret))
.http_only(true)
- .path("/api/")
+ .path("/")
.permanent()
.build();