From 01af0ccfdabef3fece9b737e0a4b880e99e1338c Mon Sep 17 00:00:00 2001 From: Kraiem Taha Yassine Date: Wed, 31 Jul 2024 15:55:39 +0200 Subject: [PATCH] Dev (#2448) * refactor(chalice): upgraded dependencies * refactor(chalice): upgraded dependencies feat(chalice): support heatmaps * fix(chalice): fixed Math-operators validation refactor(chalice): search for sessions that have events for heatmaps * refactor(chalice): search for sessions that have at least 1 location event for heatmaps * refactor(chalice): upgraded dependencies * refactor(chalice): upgraded dependencies feat(chalice): support heatmaps * fix(chalice): fixed Math-operators validation refactor(chalice): search for sessions that have events for heatmaps * refactor(chalice): search for sessions that have at least 1 location event for heatmaps * refactor(chalice): upgraded dependencies refactor(crons): upgraded dependencies refactor(alerts): upgraded dependencies * feat(chalice): get top 10 values for autocomplete CH * refactor(chalice): cleaned code refactor(chalice): upgraded dependencies refactor(alerts): upgraded dependencies refactor(crons): upgraded dependencies * feat(chalice): autocomplete return top 10 with stats * fix(chalice): fixed autocomplete top 10 meta-filters * fix(chalice): include spot routers --- ee/api/app.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ee/api/app.py b/ee/api/app.py index 3b1773cb4..0d15d3985 100644 --- a/ee/api/app.py +++ b/ee/api/app.py @@ -23,7 +23,7 @@ from routers import ee if config("ENABLE_SSO", cast=bool, default=True): from routers import saml from crons import core_crons, ee_crons, core_dynamic_crons -from routers.subs import insights, metrics, v1_api, health, usability_tests +from routers.subs import insights, metrics, v1_api, health, usability_tests, spot from routers.subs import v1_api_ee loglevel = config("LOGLEVEL", default=logging.WARNING) @@ -146,6 +146,10 @@ app.include_router(usability_tests.public_app) app.include_router(usability_tests.app) app.include_router(usability_tests.app_apikey) +app.include_router(spot.public_app) +app.include_router(spot.app) +app.include_router(spot.app_apikey) + if config("ENABLE_SSO", cast=bool, default=True): app.include_router(saml.public_app) app.include_router(saml.app)