aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/urls.py
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2018-02-19 20:58:15 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-02-19 20:58:15 +0000
commit907b5d1be1657301e4701d0d08235db16e7d31de (patch)
treebaf5b387fac5ddc48279c8be0c0c03f59cea1802 /src/api/urls.py
parent21a025644865678c7ce9ef60a5cbec07e86f737c (diff)
parent86cfa9015a8e09544bc7b1547ec329a567f4c66d (diff)
Merge "Expose Limited User Info Through API"
Diffstat (limited to 'src/api/urls.py')
-rw-r--r--src/api/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/api/urls.py b/src/api/urls.py
index 71cd3ef..c2cd510 100644
--- a/src/api/urls.py
+++ b/src/api/urls.py
@@ -34,6 +34,7 @@ router.register(r'servers', ServerViewSet)
router.register(r'bookings', BookingViewSet)
router.register(r'resource_status', ResourceStatusViewSet)
router.register(r'notifier', NotifierViewSet)
+router.register(r'user', UserViewSet)
urlpatterns = [
url(r'^', include(router.urls)),