From 2dae08b6f3a2a0363e3b8fa90170423cef4b233d Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 21 Nov 2022 10:25:28 +0100 Subject: Fix redirect URL after logout --- CHANGES.md | 6 +++++- example_project/settings.py | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3