19 lines
383 B
Python
19 lines
383 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.conf.urls import include, url
|
|
|
|
from .api_views import APIRoot, BrowseableObtainAuthToken
|
|
|
|
|
|
api_urls = [
|
|
url(r'^$', APIRoot.as_view(), name='api_root'),
|
|
url(
|
|
r'^auth/token/obtain/$', BrowseableObtainAuthToken.as_view(),
|
|
name='auth_token_obtain'
|
|
),
|
|
]
|
|
|
|
urlpatterns = [
|
|
url(r'^', include(api_urls)),
|
|
]
|