Dashboard Permissions: Copy Permalink / URL with Native Filters #29880
Replies: 1 comment 1 reply
-
Hey @matthiaszajcev! I'm here to help you with any questions or issues you have. I'm a bot designed to assist with bug fixes, answer questions, and guide you on becoming a contributor. Let me know how I can assist you! To allow users with the "defaultviewer" role to copy the permalink/URL of a dashboard or chart with Native Filters enabled, you should assign the following specific permissions:
These permissions ensure that users can view the necessary components to generate and copy permalinks/URLs for dashboards and charts. defaultviewer_role.permissions = [
("can_read", "Dashboard"),
("can_read", "Slice"),
("can_read", "Dashboard"),
("can_read", "Slice"),
] Additionally, ensure that the FEATURE_FLAGS = {
'DASHBOARD_NATIVE_FILTERS': True,
} And set the NATIVE_FILTER_DEFAULT_ROW_LIMIT = 1000 This configuration should enable the desired functionality [1][2]. |
Beta Was this translation helpful? Give feedback.
-
To be able to share the permalink/url of a dashboard or chart we enabled the following settings in the superset_config.py:
FEATURE_FLAGS = {"DASHBOARD_FILTERS_EXPERIMENTAL": True, "DASHBOARD_NATIVE_FILTERS_SET": True, "DASHBOARD_NATIVE_FILTERS": True, "DASHBOARD_CROSS_FILTERS": True, "ENABLE_TEMPLATE_PROCESSING": True}
Which permissions do we have to give our "defaultviewer" role to be able to copy these URLs with the Native Filter?
Beta Was this translation helpful? Give feedback.
All reactions