Dev (#2528)
* 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:
parent
fee823f69f
commit
80e913d0d1
2 changed files with 2 additions and 2 deletions
|
|
@ -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})
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue