15 lines
486 B
Python
15 lines
486 B
Python
![]() |
from django.urls import include, path
|
||
|
from rest_framework import routers
|
||
|
|
||
|
from tutorial.quickstart import views
|
||
|
|
||
|
router = routers.DefaultRouter()
|
||
|
router.register(r'users', views.UserViewSet)
|
||
|
router.register(r'groups', views.GroupViewSet)
|
||
|
|
||
|
# Wire up our API using automatic URL routing.
|
||
|
# Additionally, we include login URLs for the browsable API.
|
||
|
urlpatterns = [
|
||
|
path('api', views.Index.as_view()),
|
||
|
path('api-auth/', include('rest_framework.urls', namespace='rest_framework'))
|
||
|
]
|