apply the same changes to the redirecting cookie transport

This commit is contained in:
maxDorninger
2025-07-13 17:23:05 +02:00
parent e2704b6b1f
commit c8425d7949

View File

@@ -119,7 +119,9 @@ bearer_transport = BearerTransport(tokenUrl="auth/jwt/login")
cookie_transport = CookieTransport(
cookie_max_age=LIFETIME, cookie_samesite="lax", cookie_secure=False
)
openid_cookie_transport = RedirectingCookieTransport(cookie_max_age=LIFETIME)
openid_cookie_transport = RedirectingCookieTransport(
cookie_max_age=LIFETIME, cookie_samesite="lax", cookie_secure=False
)
bearer_auth_backend = AuthenticationBackend(
name="jwt",