diff options
author | Raven Hodgdon <jhodgdon@iol.unh.edu> | 2022-01-06 15:56:13 -0500 |
---|---|---|
committer | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2022-09-07 18:05:28 +0000 |
commit | 2f00cec033d0b20f5d4fda78281988da4ad18e9f (patch) | |
tree | d4cd1decc587134df0c82810ec087d03eeda19f1 /src/api/urls.py | |
parent | 97a32dd51c6ac6bcbb5b5f129b635afbeea40270 (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.py | 2 |
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), |