Allow to disable filter support for meta properties (#2901)

This commit is contained in:
Raphael Michel
2022-11-16 17:12:37 +01:00
committed by GitHub
parent 49097037da
commit a0e5717f7d
7 changed files with 37 additions and 6 deletions

View File

@@ -92,7 +92,8 @@ def filter_qs_by_attr(qs, request):
props = {
p.name: p for p in request.organizer.meta_properties.filter(
name__in=attrs.keys()
name__in=attrs.keys(),
filter_allowed=True,
)
}