server/src/authentication/urls.py
author rougeronj
Tue, 09 Jun 2015 19:13:29 +0200
changeset 148 9f6f17de6d98
parent 143 ea633c8f9bfa
permissions -rw-r--r--
copy server new version of ammico app and add inde.html which list the available expositions

from django.conf.urls import patterns, url

from .views import User, ObtainAuthToken


urlpatterns = patterns('',
    url(r'^user', User.as_view()),
    url(r'^api-token-auth', ObtainAuthToken.as_view()),
)