VitalyKapustin-git opened a new issue, #24976: URL: https://github.com/apache/superset/issues/24976
https://github.com/apache/superset/blob/571f33536e627ccf8b6cafac1d8c296e442e1ef6/superset/security/manager.py#L621 By using `can_access_database()` function we prevent granular permissions for schemas. All users that have access to db will see all available schemas. If we replace it to something like: `if hierarchical and (self.can_access_all_datasources() or self.can_access_all_databases())` then schemas will be displayed just only for users with extended permissions. All others will get just only schemas from their roles. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
