diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-03-12 10:28:48 -0400 |
---|---|---|
committer | Parker Berberian <pberberian@iol.unh.edu> | 2019-03-12 10:28:48 -0400 |
commit | e00d336aeb6da542d8a54f157ab2e285cd4a3e57 (patch) | |
tree | 32556fa89bd500183b30a2ef1601c600db422ecb /src/api/urls.py | |
parent | 36c012ef86233a323434be5e4c6de524188591e9 (diff) |
Allow labs to retirieve and update some host information in the api
Change-Id: Ib0682141351f7789c50d98a992ab166c2f033f4b
Signed-off-by: Parker Berberian <pberberian@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 33a8289..d18a04d 100644 --- a/src/api/urls.py +++ b/src/api/urls.py @@ -40,6 +40,7 @@ from api.views import ( current_jobs, done_jobs, update_host_bmc, + lab_host, GenerateTokenView ) @@ -52,6 +53,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>/hosts/<slug:host_id>', lab_host), path('labs/<slug:lab_name>/hosts/<slug:host_id>/bmc', update_host_bmc), path('labs/<slug:lab_name>/jobs/<int:job_id>', specific_job), path('labs/<slug:lab_name>/jobs/<int:job_id>/<slug:task_id>', specific_task), |