summaryrefslogtreecommitdiff
path: root/coip/apps/scim/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'coip/apps/scim/urls.py')
-rw-r--r--coip/apps/scim/urls.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/coip/apps/scim/urls.py b/coip/apps/scim/urls.py
new file mode 100644
index 0000000..2802586
--- /dev/null
+++ b/coip/apps/scim/urls.py
@@ -0,0 +1,16 @@
+'''
+Created on Apr 10, 2012
+
+@author: leifj
+'''
+
+from django.conf.urls.defaults import patterns, url
+
+# my/name/scim/v1/Groups/
+
+urlpatterns = patterns('coip.apps.scim.views',
+ url(r'^(?P<prefix>[^\/]+)/?$',view='scim_v1'),
+ url(r'^(?P<prefix>[^\/]+)/?(?P<uuid>[^\/]+)/?$',view='scim_v1'),
+)
+
+#(?:^(?P<nid>[0-9]+)/)? \ No newline at end of file