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/urls.py | |
parent | dac8ce9528f7c1077f29c4fc7feb369f8aa459e9 (diff) |
basic AA using pysaml2
Diffstat (limited to 'coip/urls.py')
-rw-r--r-- | coip/urls.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coip/urls.py b/coip/urls.py index c2645de..353427f 100644 --- a/coip/urls.py +++ b/coip/urls.py @@ -72,5 +72,6 @@ urlpatterns = patterns('', (r'^api/activitystreams/', include('coip.apps.activitystreams.urls')), (r'^api/opensocial/', include('coip.apps.opensocial.urls')), (r'^api/hello/?', 'coip.apps.name.views.hello'), - (r'^oauth2/', include('django_oauth2_lite.urls')) + (r'^oauth2/', include('django_oauth2_lite.urls')), + (r'^saml2/', include('coip.apps.saml2.urls')) ) |