diff options
author | grakiss <grakiss.wanglei@huawei.com> | 2017-07-07 15:06:29 +0800 |
---|---|---|
committer | grakiss <grakiss.wanglei@huawei.com> | 2017-07-20 09:51:50 +0800 |
commit | 20826c00015567244153ab2e7b39452600fd38c7 (patch) | |
tree | 8ea100263f358b5b00f4e69e43f2164e38023f4d /utils/test/testapi/opnfv_testapi/router | |
parent | 5b77ae789540f805199831427930476c9579916b (diff) |
role based access control and result upload
1. add role for user
2. user can upload test results
Change-Id: I1c5370be7818edb0394f05e8b81f975deb98b286
Signed-off-by: grakiss <grakiss.wanglei@huawei.com>
Diffstat (limited to 'utils/test/testapi/opnfv_testapi/router')
-rw-r--r-- | utils/test/testapi/opnfv_testapi/router/url_mappings.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/test/testapi/opnfv_testapi/router/url_mappings.py b/utils/test/testapi/opnfv_testapi/router/url_mappings.py index a2312de09..37e719b65 100644 --- a/utils/test/testapi/opnfv_testapi/router/url_mappings.py +++ b/utils/test/testapi/opnfv_testapi/router/url_mappings.py @@ -48,6 +48,7 @@ mappings = [ # Push results with mandatory request payload parameters # (project, case, and pod) (r"/api/v1/results", result_handlers.ResultsCLHandler), + (r'/api/v1/results/upload', result_handlers.ResultsUploadHandler), (r"/api/v1/results/([^/]+)", result_handlers.ResultsGURHandler), # scenarios @@ -64,4 +65,5 @@ mappings = [ (r'/api/v1/auth/signin_return', sign.SigninReturnHandler), (r'/api/v1/auth/signout', sign.SignoutHandler), (r'/api/v1/profile', user.ProfileHandler), + ] |