From d57892f46ca4864f2188d0e4fccb97d3987c10d1 Mon Sep 17 00:00:00 2001 From: SerenaFeng Date: Wed, 17 May 2017 18:31:26 +0800 Subject: add signin web to TestAPI Change-Id: I4d39a8561c8ebd3238a495e5799fd43fb1a508b9 Signed-off-by: SerenaFeng --- testapi/opnfv_testapi/router/url_mappings.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'testapi/opnfv_testapi/router/url_mappings.py') diff --git a/testapi/opnfv_testapi/router/url_mappings.py b/testapi/opnfv_testapi/router/url_mappings.py index ebe5994..7bd3430 100644 --- a/testapi/opnfv_testapi/router/url_mappings.py +++ b/testapi/opnfv_testapi/router/url_mappings.py @@ -15,11 +15,11 @@ from opnfv_testapi.resources import project_handlers from opnfv_testapi.resources import result_handlers from opnfv_testapi.resources import scenario_handlers from opnfv_testapi.resources import testcase_handlers -import opnfv_testapi.resources.ui_handlers +from opnfv_testapi.ui import root +from opnfv_testapi.ui.auth import handlers as auth_handlers mappings = [ # GET /versions => GET API version - (r'/', opnfv_testapi.resources.ui_handlers.UIHandler), (r"/versions", handlers.VersionHandler), # few examples: @@ -54,7 +54,11 @@ mappings = [ (r"/api/v1/scenarios/([^/]+)", scenario_handlers.ScenarioGURHandler), # static path - (r'/(.*\.(css|png|gif|js|html|json))', + (r'/(.*\.(css|png|gif|js|html|json|map))', tornado.web.StaticFileHandler, {'path': config.Config().static_path}), + + (r'/', root.RootHandler), + (r'/api/v1/auth/signin', auth_handlers.SigninHandler), + (r'/api/v1/auth/signin_return', auth_handlers.SigninReturnHandler), ] -- cgit 1.2.3-korg