Projet

Général

Profil

0009-auth_saml-after-logout-response-return-to-the-logout.patch

Benjamin Dauvergne, 18 octobre 2022 20:36

Télécharger (918 octets)

Voir les différences:

Subject: [PATCH 09/10] auth_saml: after logout response return to the logout
 view (#69720)

 src/authentic2_auth_saml/urls.py | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
src/authentic2_auth_saml/urls.py
17 17
from django.urls import include, re_path
18 18

  
19 19
urlpatterns = [
20
    re_path(r'^accounts/saml/', include('mellon.urls'), kwargs={'template_base': 'authentic2/base.html'})
20
    re_path(
21
        r'^accounts/saml/',
22
        include('mellon.urls'),
23
        kwargs={'template_base': 'authentic2/base.html', 'logout_next_url': '/logout/'},
24
    )
21 25
]
22
-