geido commented on code in PR #42472: URL: https://github.com/apache/superset/pull/42472#discussion_r3673434273
########## superset/config.py: ########## @@ -2996,6 +2996,14 @@ class ExtraRelatedQueryFilters(TypedDict, total=False): # Only effective when ENABLE_VIEWERS is on. VIEWER_PROMISCUOUS_MODE = False +# When True, a newly created asset is shared read-only with every group its +# creator belongs to, unless the create payload names viewers explicitly. +# This narrows access: an asset with no viewers falls back to datasource +# permissions, while one with viewers is limited to its editors and viewers. +# Dashboards must also be published for viewers to gain access, so a new +# dashboard grants its creator's groups nothing until it is published. +ASSIGN_CREATOR_GROUPS_AS_VIEWERS = False Review Comment: Can this be a feature flag? -- 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]
