From 6176adb1968900367e538cd9fe381c817f5e8e65 Mon Sep 17 00:00:00 2001 From: Mariano Ruiz Date: Mon, 2 Sep 2024 12:26:37 -0300 Subject: [PATCH] Expire session cookie after 8 hours --- coleman/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/coleman/settings.py b/coleman/settings.py index bdf6c5b..ff4d2f9 100644 --- a/coleman/settings.py +++ b/coleman/settings.py @@ -176,6 +176,8 @@ ] } +SESSION_COOKIE_AGE = 8 * 60 * 60 + # Google SSO (django-google-sso) GOOGLE_SSO_ENABLED = env.bool('GOOGLE_SSO_ENABLED', False)