summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2022-11-21 10:25:28 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2022-12-12 12:23:19 +0100
commit59c408b9f656f501f00242b1177af170f7768e9a (patch)
tree8cc8f708cbec0cab234c01deecab6ac7988d19fe
parent692dc14945b618df73a3a08272fda6a57ca718e1 (diff)
downloadIshtar-59c408b9f656f501f00242b1177af170f7768e9a.tar.bz2
Ishtar-59c408b9f656f501f00242b1177af170f7768e9a.zip
Fix redirect URL after logout
-rw-r--r--CHANGES.md6
-rw-r--r--example_project/settings.py1
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md
index f1ee81a15..a31cdae20 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,8 +1,12 @@
---
title: Ishtar changelog
-date: 2022-11-18
+date: 2022-11-21
---
+
+### Bug fixes ###
+- Fix redirect URL after logout
+
v4.0.28 - 2022-11-18
--------------------
diff --git a/example_project/settings.py b/example_project/settings.py
index d0c7ab476..4830abe42 100644
--- a/example_project/settings.py
+++ b/example_project/settings.py
@@ -59,6 +59,7 @@ STATICFILES_DIRS = (BS_STATIC,)
ODT_TEMPLATE = ROOT_PATH + "../ishtar_common/static/template.odt"
LOGIN_REDIRECT_URL = "/" + URL_PATH
+LOGOUT_REDIRECT_URL = "/" + URL_PATH
ACCOUNT_ACTIVATION_DAYS = 7