We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EXTRA_RELATED_QUERY_FILTERS are applied only to "OWNER" 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 "OWNER":
Users exposed in "MODIFIED BY":
Extend EXTRA_RELATED_QUERY_FILTERS functionality to "MODIFIED BY" FILTER in dashboards or charts view.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
[SIP] Proposal for ...EXTRA_RELATED_QUERY_FILTERS on 4.0.2
Motivation
EXTRA_RELATED_QUERY_FILTERS are applied only to "OWNER" filter while exposing all users under "MODIFIED BY".
The code used for filtering:
Users correctly hidden in "OWNER":
Users exposed in "MODIFIED BY":
Proposed Change
Extend EXTRA_RELATED_QUERY_FILTERS functionality to "MODIFIED BY" FILTER in dashboards or charts view.
The text was updated successfully, but these errors were encountered: