You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by su...@apache.org on 2021/12/11 10:40:44 UTC

[superset] 02/02: eums don't work that way

This is an automated email from the ASF dual-hosted git repository.

suddjian pushed a commit to branch guest-token-authz
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 52c453bad27b6ffc5cbee6dd9d8acf7ae0771362
Author: David Aaron Suddjian <aa...@gmail.com>
AuthorDate: Sat Dec 11 02:35:35 2021 -0800

    eums don't work that way
---
 superset/dashboards/filters.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset/dashboards/filters.py b/superset/dashboards/filters.py
index 3d49978..e398af9 100644
--- a/superset/dashboards/filters.py
+++ b/superset/dashboards/filters.py
@@ -137,7 +137,7 @@ class DashboardAccessFilter(BaseFilter):  # pylint: disable=too-few-public-metho
             embedded_dashboard_ids = [
                 r["id"]
                 for r in guest_user.resources
-                if r["type"] == GuestTokenResourceType.DASHBOARD
+                if r["type"] == GuestTokenResourceType.DASHBOARD.value
             ]
             if len(embedded_dashboard_ids) != 0:
                 feature_flagged_filters.append(Dashboard.id.in_(embedded_dashboard_ids))