diff options
author | Leif Johansson <leifj@sunet.se> | 2012-04-02 15:30:37 +0200 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2012-04-02 15:30:37 +0200 |
commit | f939426fc32edb41be77c28d94c020a8fbc6c1bd (patch) | |
tree | 7bbe63080376cc24044c47b76595baa2621ff7fd /coip/apps/saml2/urls.py | |
parent | dac8ce9528f7c1077f29c4fc7feb369f8aa459e9 (diff) |
basic AA using pysaml2
Diffstat (limited to 'coip/apps/saml2/urls.py')
-rw-r--r-- | coip/apps/saml2/urls.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/coip/apps/saml2/urls.py b/coip/apps/saml2/urls.py new file mode 100644 index 0000000..1654c66 --- /dev/null +++ b/coip/apps/saml2/urls.py @@ -0,0 +1,11 @@ +''' +Created on Nov 7, 2011 + +@author: leifj +''' +from django.conf.urls.defaults import patterns, url, include + +urlpatterns = patterns('coip.apps.saml2.views', + url(r'^aq$',view='aq'), + url(r'^metadata$',view='metadata') +)
\ No newline at end of file |