diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-07-03 12:37:35 -0400 |
---|---|---|
committer | Parker Berberian <pberberian@iol.unh.edu> | 2019-07-08 10:41:44 -0400 |
commit | 9c68247105e075fb7364af99cb3ee26c1a82b65b (patch) | |
tree | 15ebb9e998eafd989304e5f5d729797b441755a8 /src/api/urls.py | |
parent | e0b8bb3ee3c218a65562acdc5e76f714aab92926 (diff) |
Update Dependencies
Removes or upgrades the dependencies in requirements.txt
Change-Id: I4e66348fc80259b4a2f64ca912556f7d847f0645
Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
Diffstat (limited to 'src/api/urls.py')
-rw-r--r-- | src/api/urls.py | 10 |
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), |