summaryrefslogtreecommitdiffstats
path: root/reporting/api/urls.py
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2018-09-19 08:24:11 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-09-19 08:24:11 +0000
commit27830b0d5e7601612069b65e69f79292ab849f7a (patch)
tree63fa539948c36ced7cfe96b46a537cb1a958e861 /reporting/api/urls.py
parentfda356248fc00a07893f55c2913bb6ea222a528f (diff)
parent6ffbb81ec808aa615c7dad95fe6328ea5cc9c7b5 (diff)
Merge "Add testing gating reporting page"
Diffstat (limited to 'reporting/api/urls.py')
-rw-r--r--reporting/api/urls.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/reporting/api/urls.py b/reporting/api/urls.py
index a5228b2..34f61d8 100644
--- a/reporting/api/urls.py
+++ b/reporting/api/urls.py
@@ -9,6 +9,7 @@
from api.handlers import landing
from api.handlers import projects
from api.handlers import testcases
+from api.handlers import scenarios
mappings = [
(r"/landing-page/filters", landing.FiltersHandler),
@@ -16,5 +17,7 @@ mappings = [
(r"/projects-page/projects", projects.Projects),
(r"/projects/([^/]+)/cases", testcases.TestCases),
- (r"/projects/([^/]+)/cases/([^/]+)", testcases.TestCase)
+ (r"/projects/([^/]+)/cases/([^/]+)", testcases.TestCase),
+
+ (r"/scenarios/results", scenarios.Result)
]