1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-19 10:26:17 +00:00

Fix adfs urls in django 1.11

This commit is contained in:
zheng xie
2018-07-05 10:42:41 +08:00
committed by GitHub
parent 87a5714354
commit d662c5e3d8

View File

@@ -582,7 +582,7 @@ if getattr(settings, 'ENABLE_ADFS_LOGIN', False):
urlpatterns += [
url(r'^saml2/acs/$', assertion_consumer_service, name='saml2_acs'),
url(r'^saml2/complete/$', auth_complete, name='saml2_complete'),
(r'^saml2/', include('djangosaml2.urls')),
url(r'^saml2/', include('djangosaml2.urls')),
]
if getattr(settings, 'ENABLE_ONLYOFFICE', False):