Browse Source

Set SESSION_COOKIE_AGE to reset session if cookie older than 2h.

Conflicts:
	coin/settings.py
Hugo Lefeuvre 10 years ago
parent
commit
9364c6df77
1 changed files with 3 additions and 0 deletions
  1. 3 0
      coin/settings.py

+ 3 - 0
coin/settings.py

@@ -227,6 +227,9 @@ DEFAULT_FROM_EMAIL = "adminsys@illyse.org"
 #EMAIL_HOST = "smtp.chezmoi.tld"
 
 
+# Reset session if cookie older than 2h.
+SESSION_COOKIE_AGE = 7200
+
 # Surcharge les paramètres en utilisant le fichier settings_local.py
 try:
     from settings_local import *