summaryrefslogtreecommitdiffstats
path: root/dashboard/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
commit3b22628fe24ca3b9b9659462af6abaf8fd6601f8 (patch)
tree71af40f5ea05ac22f992ceacc848afbedd2c3390 /dashboard/src/api/urls.py
parentb9ac97df7bedf857a38dd696b05ec618b217d4ff (diff)
parent3979c0cc8fc863b1661353e96e17ffa166abfa96 (diff)
Merge "Expose Limited User Info Through API"
Diffstat (limited to 'dashboard/src/api/urls.py')
-rw-r--r--dashboard/src/api/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/dashboard/src/api/urls.py b/dashboard/src/api/urls.py
index 71cd3ef..c2cd510 100644
--- a/dashboard/src/api/urls.py
+++ b/dashboard/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)),