aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/urls.py
diff options
context:
space:
mode:
authorSawyer Bergeron <sbergeron@iol.unh.edu>2019-08-29 16:35:53 +0000
committerGerrit Code Review <gerrit@opnfv.org>2019-08-29 16:35:53 +0000
commit01bdb95d22840393a20378559cf3cf59c4bdce78 (patch)
tree7880970eb7f55c2e9a6af7ada2ee5900cac9e2be /src/api/urls.py
parent99f96e86bdf78e9d93ad1d259fc18e3fff772720 (diff)
parentd78fcef6ec55dbaa225c6607bdac430539bf3f0b (diff)
Merge "Adds Downtime Awareness"
Diffstat (limited to 'src/api/urls.py')
-rw-r--r--src/api/urls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/api/urls.py b/src/api/urls.py
index 778f6eb..b8b9cff 100644
--- a/src/api/urls.py
+++ b/src/api/urls.py
@@ -31,6 +31,7 @@ from api.views import (
lab_profile,
lab_status,
lab_inventory,
+ lab_downtime,
specific_job,
specific_task,
new_jobs,
@@ -47,6 +48,7 @@ urlpatterns = [
path('labs/<slug:lab_name>/profile', lab_profile),
path('labs/<slug:lab_name>/status', lab_status),
path('labs/<slug:lab_name>/inventory', lab_inventory),
+ path('labs/<slug:lab_name>/downtime', lab_downtime),
path('labs/<slug:lab_name>/hosts/<slug:host_id>', lab_host),
path('labs/<slug:lab_name>/hosts/<slug:host_id>/bmc', update_host_bmc),
path('labs/<slug:lab_name>/booking/<int:booking_id>/pdf', get_pdf, name="get-pdf"),