server/ammicosrv/authentication/urls.py
author rougeronj
Wed, 10 Jun 2015 10:57:27 +0200
changeset 149 8e117699857a
parent 143 server/src/authentication/urls.py@ea633c8f9bfa
parent 135 server/src/authentication/urls.py@27065f8a19d3
permissions -rw-r--r--
Merge with 925337e6983dc5e5a011681dafd37ce986e07a1a

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()),
)