| changeset 149 | 8e117699857a |
| parent 143 | ea633c8f9bfa |
| parent 135 | 27065f8a19d3 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/server/ammicosrv/authentication/urls.py Wed Jun 10 10:57:27 2015 +0200 @@ -0,0 +1,9 @@ +from django.conf.urls import patterns, url + +from ammicosrv.authentication.views import User, ObtainAuthToken + + +urlpatterns = patterns('', + url(r'^user', User.as_view()), + url(r'^api-token-auth', ObtainAuthToken.as_view()), +)