diff options
author | thuva4 <tharma.thuva@gmail.com> | 2018-01-29 17:08:17 +0530 |
---|---|---|
committer | thuva4 <tharma.thuva@gmail.com> | 2018-02-06 21:13:52 +0530 |
commit | 5e37774a35b9bff0a8c5c6c81f34e8075531c3a0 (patch) | |
tree | f5d5a1ae28ddbf8571ebf9cea0680adb1a85edf4 /testapi/opnfv_testapi/router | |
parent | e6afa4d647a48736fb6645618d773de1c544bbd6 (diff) |
Add deploy results
Create view and controller for deploy results
Add tests for deploy results
Change-Id: Iba29e7a867d45aacd18a26dc4e2d9363cdf8928d
Signed-off-by: thuva4 <tharma.thuva@gmail.com>
Diffstat (limited to 'testapi/opnfv_testapi/router')
-rw-r--r-- | testapi/opnfv_testapi/router/url_mappings.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testapi/opnfv_testapi/router/url_mappings.py b/testapi/opnfv_testapi/router/url_mappings.py index a857725..b9dd231 100644 --- a/testapi/opnfv_testapi/router/url_mappings.py +++ b/testapi/opnfv_testapi/router/url_mappings.py @@ -52,6 +52,7 @@ mappings = [ (r'/api/v1/results/upload', result_handlers.ResultsUploadHandler), (r"/api/v1/results/([^/]+)", result_handlers.ResultsGURHandler), (r"/api/v1/deployresults", deploy_handlers.DeployResultsHandler), + (r"/api/v1/deployresults/([^/]+)", deploy_handlers.DeployResultHandler), # scenarios (r"/api/v1/scenarios", scenario_handlers.ScenariosCLHandler), |