* 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

* 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

* feat(chalice): autocomplete return top 10 with stats

* fix(chalice): fixed autocomplete top 10 meta-filters

* fix(chalice): fixed scope state
This commit is contained in:
Kraiem Taha Yassine 2024-09-03 10:26:03 +02:00 committed by GitHub
parent fee823f69f
commit 80e913d0d1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ def get_by_tenant_id(tenant_id):
'{license.EDITION}' AS edition,
openreplay_version() AS version_number,
tenants.opt_out,
scope
scope_state
FROM public.tenants
LIMIT 1;""",
{"tenantId": tenant_id})

View file

@ -32,7 +32,7 @@ def get_by_tenant_id(tenant_id):
openreplay_version() AS version_number,
tenants.opt_out,
tenants.tenant_key,
scope
scope_state
FROM public.tenants
WHERE tenants.tenant_id = %(tenantId)s
AND tenants.deleted_at ISNULL