pablitosky opened a new issue, #31604:
URL: https://github.com/apache/superset/issues/31604
## [SIP] Proposal for ...EXTRA_RELATED_QUERY_FILTERS on 4.0.2
### Motivation
EXTRA_RELATED_QUERY_FILTERS are applied only to "OWNERS" filter while
exposing all users under "MODIFIED BY".
The code used for filtering:
```
def user_filter(query):
from sqlalchemy.sql import false
return query.filter(false())
EXTRA_RELATED_QUERY_FILTERS = {
"user": user_filter,
}
```
Users correctly hidden in "OWNERS":

Users exposed in "MODIFIED BY":

### Proposed Change
Extend EXTRA_RELATED_QUERY_FILTERS functionality to "MODIFIED BY" FILTER in
dashboards or charts view.
--
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]