aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/urls.py')
-rw-r--r--src/api/urls.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/api/urls.py b/src/api/urls.py
index 7a48425..778f6eb 100644
--- a/src/api/urls.py
+++ b/src/api/urls.py
@@ -24,13 +24,10 @@ Including another URLconf
1. Import the include() function: from django.conf.urls import url, include
2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls'))
"""
-from django.conf.urls import url, include
+from django.conf.urls import url
from django.urls import path
-from rest_framework import routers
from api.views import (
- BookingViewSet,
- UserViewSet,
lab_profile,
lab_status,
lab_inventory,
@@ -46,12 +43,7 @@ from api.views import (
GenerateTokenView
)
-router = routers.DefaultRouter()
-router.register(r'bookings', BookingViewSet)
-router.register(r'user', UserViewSet)
-
urlpatterns = [
- url(r'^', include(router.urls)),
path('labs/<slug:lab_name>/profile', lab_profile),
path('labs/<slug:lab_name>/status', lab_status),
path('labs/<slug:lab_name>/inventory', lab_inventory),