server/src/authentication/urls.py
author rougeronj
Tue, 09 Jun 2015 19:05:05 +0200
changeset 143 ea633c8f9bfa
parent 117 41a78460bdac
permissions -rw-r--r--
add exposition table and update the views to include the new foreign key to the exposition table

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