aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/urls.py
diff options
context:
space:
mode:
authorJacob Hodgdon <jhodgdon@iol.unh.edu>2021-07-22 16:49:26 -0400
committerSawyer Bergeron <sbergeron@iol.unh.edu>2021-08-04 15:01:12 -0400
commitaa06cf305172854a47d61387c4df4f893dd00839 (patch)
tree8533c8498ed6cdcab396de609d566208c2301b85 /src/api/urls.py
parent68e660d74131f92337a37362014056e6390d350f (diff)
added /api/labs endpoint and tracebacks
Change-Id: I59d06d19806e892daed007689b0dab139eae3160 Signed-off-by: Jacob Hodgdon <jhodgdon@iol.unh.edu> Signed-off-by: Sawyer Bergeron <sbergeron@iol.unh.edu>
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 3d78ed6..1878d9c 100644
--- a/src/api/urls.py
+++ b/src/api/urls.py
@@ -82,6 +82,7 @@ urlpatterns = [
path('resource_inventory/<int:template_id>/images', images_for_template),
path('users', all_users),
+ path('labs', all_labs),
url(r'^token$', GenerateTokenView.as_view(), name='generate_token'),
]