From 9c0d7d498c8dc5c4943f83ea9e6c5185cc058c5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Schneider?= Date: Mon, 1 Dec 2014 12:00:38 +0100 Subject: [PATCH] authform: add disassociation url in the default mapper --- mandaye/auth/authform.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mandaye/auth/authform.py b/mandaye/auth/authform.py index cd42e56..7a1e05f 100644 --- a/mandaye/auth/authform.py +++ b/mandaye/auth/authform.py @@ -72,6 +72,10 @@ a password_field key if you want to encode a password.") 'path': r'%s$' % self.urls.get('logout_url', '/mandaye/logout'), 'on_response': [{'auth': 'slo'}] }, + { + 'path': r'%s$' % self.urls.get('disassociate_url', '/mandaye/disassociate'), + 'on_response': [{'auth': 'disassociate'}] + } ] if config.a2_auto_connection: mapping.append({