diff options
author | SerenaFeng <feng.xiaowei@zte.com.cn> | 2018-01-03 10:33:08 +0800 |
---|---|---|
committer | SerenaFeng <feng.xiaowei@zte.com.cn> | 2018-01-03 17:54:06 +0800 |
commit | db36e98243a4cb1c12d2245b8469743168d00f06 (patch) | |
tree | 1d3cca13902d0acdd5c13ad795a437807113ff82 /testapi/opnfv_testapi/router | |
parent | c72bebf41dbd08facb7398fa94680d812ea38a62 (diff) |
add deployment result collecting interfaces
Change-Id: I5fe50c44e7b36ea45dd1b8632130b30dfe173d0a
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'testapi/opnfv_testapi/router')
-rw-r--r-- | testapi/opnfv_testapi/router/url_mappings.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testapi/opnfv_testapi/router/url_mappings.py b/testapi/opnfv_testapi/router/url_mappings.py index 349d557..a857725 100644 --- a/testapi/opnfv_testapi/router/url_mappings.py +++ b/testapi/opnfv_testapi/router/url_mappings.py @@ -10,6 +10,7 @@ import tornado.web from opnfv_testapi.common.config import CONF from opnfv_testapi.handlers import base_handlers +from opnfv_testapi.handlers import deploy_result_handlers as deploy_handlers from opnfv_testapi.handlers import pod_handlers from opnfv_testapi.handlers import project_handlers from opnfv_testapi.handlers import result_handlers @@ -50,6 +51,7 @@ mappings = [ (r"/api/v1/results", result_handlers.ResultsCLHandler), (r'/api/v1/results/upload', result_handlers.ResultsUploadHandler), (r"/api/v1/results/([^/]+)", result_handlers.ResultsGURHandler), + (r"/api/v1/deployresults", deploy_handlers.DeployResultsHandler), # scenarios (r"/api/v1/scenarios", scenario_handlers.ScenariosCLHandler), |