From f4c84d84eb4287f51ae6775c1775333ac1b0671d Mon Sep 17 00:00:00 2001 From: Emmanuel Nyachoke Date: Thu, 20 Jun 2024 17:20:28 +0300 Subject: [PATCH] OZ-429: Enable Jinja templating in Superset config. (#75) --- distro/configs/superset/superset_config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/distro/configs/superset/superset_config.py b/distro/configs/superset/superset_config.py index 48513b7..e5d3ede 100644 --- a/distro/configs/superset/superset_config.py +++ b/distro/configs/superset/superset_config.py @@ -94,6 +94,10 @@ class CeleryConfig(object): CELERY_CONFIG = CeleryConfig SQLLAB_CTAS_NO_LIMIT = True PERMANENT_SESSION_LIFETIME = 86400 +FEATURE_FLAGS = { + "DASHBOARD_RBAC": True, + 'ENABLE_TEMPLATE_PROCESSING': True, +} class ReverseProxied(object):