From dcee1dfc798bbf4602a35fb73f6acade9f5fd630 Mon Sep 17 00:00:00 2001 From: Hugo Osvaldo Barrera Date: Wed, 26 Aug 2015 03:07:06 -0300 Subject: Fixed #12405 -- Added LOGOUT_REDIRECT_URL setting. After a user logs out via auth.views.logout(), they're redirected to LOGOUT_REDIRECT_URL if no `next_page` argument is provided. --- docs/ref/settings.txt | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'docs/ref') diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt index 2101c1c7d4..ab710fffac 100644 --- a/docs/ref/settings.txt +++ b/docs/ref/settings.txt @@ -2642,6 +2642,26 @@ This setting also accepts view function names and :ref:`named URL patterns ` which can be used to reduce configuration duplication since you don't have to define the URL in two places (``settings`` and URLconf). +.. setting:: LOGOUT_REDIRECT_URL + +``LOGOUT_REDIRECT_URL`` +----------------------- + +.. versionadded:: 1.10 + +Default: ``None`` + +The URL where requests are redirected after a user logs out using the +:func:`~django.contrib.auth.views.logout` view (if the view doesn't get a +``next_page`` argument). + +If ``None``, no redirect will be performed and the logout view will be +rendered. + +This setting also accepts view function names and :ref:`named URL patterns +` which can be used to reduce configuration duplication +since you don't have to define the URL in two places (``settings`` and URLconf). + .. setting:: PASSWORD_RESET_TIMEOUT_DAYS ``PASSWORD_RESET_TIMEOUT_DAYS`` -- cgit v1.3