You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
490 B

2 years ago
from django.urls import include, path
from rest_framework import routers
from apiserver.api import views
2 years ago
2 years ago
router = routers.DefaultRouter()
router.register(r'users', views.UserViewSet)
router.register(r'data', views.DataViewSet, basename='data')
2 years ago
2 years ago
# Wire up our API using automatic URL routing.
# Additionally, we include login URLs for the browsable API.
2 years ago
urlpatterns = [
2 years ago
path('', include(router.urls)),
path('api-auth/', include('rest_framework.urls', namespace='rest_framework'))
2 years ago
]