diff options
author | Leif Johansson <leifj@sunet.se> | 2012-04-05 13:31:22 +0200 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2012-04-05 13:31:22 +0200 |
commit | bc55b9397252c7382b6388fceef54a056d3c371e (patch) | |
tree | f8f7465c36b5679cb77f5033fe33fdf9718026fc /coip/apps/saml2/urls.py | |
parent | e38220e479ffdf88aa98dc6341cc04b45e04a70e (diff) |
moved the uris around a bit
Diffstat (limited to 'coip/apps/saml2/urls.py')
-rw-r--r-- | coip/apps/saml2/urls.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/coip/apps/saml2/urls.py b/coip/apps/saml2/urls.py index 3965a6d..76c419c 100644 --- a/coip/apps/saml2/urls.py +++ b/coip/apps/saml2/urls.py @@ -3,10 +3,9 @@ Created on Nov 7, 2011 @author: leifj ''' -from django.conf.urls.defaults import patterns, url, include +from django.conf.urls.defaults import patterns, url urlpatterns = patterns('coip.apps.saml2.views', - url(r'^aq$',view='aq'), - url(r'^metadata$',view='metadata'), - url(r'^.+',include('djangosaml2.urls')) + url(r'^aq/?$',view='aq'), + url(r'^metadata/?$',view='metadata') )
\ No newline at end of file |