From c2fec03fc7f3ac3a1df97260c5253c0002bece84 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 28 Sep 2022 15:33:07 +0200 Subject: [PATCH] :sparkles: Increase the auth token timeout --- backend/src/app/auth/oidc.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/app/auth/oidc.clj b/backend/src/app/auth/oidc.clj index 464c44197..330195d4d 100644 --- a/backend/src/app/auth/oidc.clj +++ b/backend/src/app/auth/oidc.clj @@ -469,7 +469,7 @@ {:iss :oauth :invitation-token (:invitation-token params) :props props - :exp (dt/in-future "15m")}) + :exp (dt/in-future "4h")}) uri (build-auth-uri cfg state)] (yrs/response 200 {:redirect-uri uri})))