From 50b476316a3c87623205fbbeb01ff3eec3b37287 Mon Sep 17 00:00:00 2001 From: Taha Yassine Kraiem Date: Fri, 6 May 2022 12:11:38 +0200 Subject: [PATCH] feat(api): changed root path --- ee/api/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ee/api/app.py b/ee/api/app.py index 0041ec12e..505f1393c 100644 --- a/ee/api/app.py +++ b/ee/api/app.py @@ -16,7 +16,7 @@ from routers.crons import core_crons from routers.crons import core_dynamic_crons from routers.subs import dashboard, insights, metrics, v1_api_ee -app = FastAPI() +app = FastAPI(root_path="/api") @app.middleware('http')