diff options
-rw-r--r-- | CHANGES.md | 6 | ||||
-rw-r--r-- | example_project/settings.py | 1 |
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 |