|
43 | 43 | DD_SECURE_HSTS_SECONDS=(int, 31536000), # One year expiration |
44 | 44 | DD_SESSION_COOKIE_SECURE=(bool, False), |
45 | 45 | DD_SESSION_EXPIRE_AT_BROWSER_CLOSE=(bool, False), |
46 | | - DD_SESSION_EXPIRE_WARNING=(int, 300), # warning 5 mins before expiration |
47 | 46 | DD_SESSION_COOKIE_AGE=(int, 1209600), # 14 days |
48 | 47 | DD_CSRF_COOKIE_SECURE=(bool, False), |
49 | 48 | DD_CSRF_TRUSTED_ORIGINS=(list, []), |
@@ -760,7 +759,6 @@ def generate_url(scheme, double_slashes, user, password, host, port, path, param |
760 | 759 | SECURE_HSTS_INCLUDE_SUBDOMAINS = env("DD_SECURE_HSTS_INCLUDE_SUBDOMAINS") |
761 | 760 |
|
762 | 761 | SESSION_EXPIRE_AT_BROWSER_CLOSE = env("DD_SESSION_EXPIRE_AT_BROWSER_CLOSE") |
763 | | -SESSION_EXPIRE_WARNING = env("DD_SESSION_EXPIRE_WARNING") |
764 | 762 | SESSION_COOKIE_AGE = env("DD_SESSION_COOKIE_AGE") |
765 | 763 |
|
766 | 764 | # ------------------------------------------------------------------------------ |
@@ -863,7 +861,6 @@ def generate_url(scheme, double_slashes, user, password, host, port, path, param |
863 | 861 | "dojo.context_processors.bind_system_settings", |
864 | 862 | "dojo.context_processors.bind_alert_count", |
865 | 863 | "dojo.context_processors.bind_announcement", |
866 | | - "dojo.context_processors.session_expiry_notification", |
867 | 864 | ], |
868 | 865 | }, |
869 | 866 | }, |
|
0 commit comments