diff options
author | Leif Johansson <leifj@sunet.se> | 2012-04-20 10:42:45 +0200 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2012-04-20 10:42:45 +0200 |
commit | 131f7f2d869d394ac6e942c1135529033f1e0ca2 (patch) | |
tree | 128e490a425be8e9834ffdc216743c306d96c84e /coip/apps/scim/urls.py | |
parent | 241905ce73223ed97b6ac9c62d8250b9659f6e3a (diff) |
scim v0.1newprofiles2
Diffstat (limited to 'coip/apps/scim/urls.py')
-rw-r--r-- | coip/apps/scim/urls.py | 16 |
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 |