aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/urls.py
diff options
context:
space:
mode:
authorRaven Hodgdon <jhodgdon@iol.unh.edu>2022-01-06 15:56:13 -0500
committerSawyer Bergeron <sbergeron@iol.unh.edu>2022-09-07 18:05:28 +0000
commit2f00cec033d0b20f5d4fda78281988da4ad18e9f (patch)
treed4cd1decc587134df0c82810ec087d03eeda19f1 /src/api/urls.py
parent97a32dd51c6ac6bcbb5b5f129b635afbeea40270 (diff)
added booking details api endpoint
Change-Id: I716ea72bcb57762b6fc9c684233deb42ee49f8af Signed-off-by: jhodgdon <jhodgdon@iol.unh.edu>
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 acef947..cbb453c 100644
--- a/src/api/urls.py
+++ b/src/api/urls.py
@@ -62,6 +62,7 @@ from api.views import (
single_image,
single_opsys,
create_ci_file,
+ booking_details,
)
urlpatterns = [
@@ -93,6 +94,7 @@ urlpatterns = [
path('booking/<int:booking_id>', specific_booking),
path('booking/<int:booking_id>/extendBooking/<int:days>', extend_booking),
path('booking/makeBooking', make_booking),
+ path('booking/<int:booking_id>/details', booking_details),
path('resource_inventory/availableTemplates', available_templates),
path('resource_inventory/<int:template_id>/images', images_for_template),