summaryrefslogtreecommitdiffstats
path: root/result_collection_api/result_collection_api.py
diff options
context:
space:
mode:
Diffstat (limited to 'result_collection_api/result_collection_api.py')
-rw-r--r--result_collection_api/result_collection_api.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/result_collection_api/result_collection_api.py b/result_collection_api/result_collection_api.py
index 652aa58..7d29c9d 100644
--- a/result_collection_api/result_collection_api.py
+++ b/result_collection_api/result_collection_api.py
@@ -34,11 +34,12 @@ import argparse
import tornado.ioloop
import motor
-from resources.handlers import VersionHandler, DashboardHandler
+from resources.handlers import VersionHandler
from resources.testcase_handlers import TestcaseCLHandler, TestcaseGURHandler
from resources.pod_handlers import PodCLHandler, PodGURHandler
from resources.project_handlers import ProjectCLHandler, ProjectGURHandler
from resources.result_handlers import ResultsCLHandler, ResultsGURHandler
+from resources.dashboard_handlers import DashboardHandler
from common.config import APIConfig
from tornado_swagger_ui.tornado_swagger import swagger
@@ -92,7 +93,6 @@ def make_app():
# get /dashboard
# => get the list of project with dashboard ready results
(r"/dashboard/v1/results", DashboardHandler),
- (r"/dashboard/v1/results([^/]*)", DashboardHandler),
],
db=db,
debug=CONF.api_debug_on,