add alternate name for logout view (#43202)

This commit is contained in:
Frédéric Péters 2020-05-22 09:17:36 +02:00
parent 4ae3ab76b4
commit eab3baded6
1 changed files with 1 additions and 0 deletions

View File

@ -40,5 +40,6 @@ urlpatterns = [
if 'mellon' in settings.INSTALLED_APPS:
urlpatterns += [
url(r'^_mandaye/logout/$', views.logout, name='logout'),
url(r'^_mandaye/logout/$', views.logout, name='auth_logout'),
url(r'^_mandaye/accounts/mellon/', include('mellon.urls')),
]