Fix user and owner filters
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful

This commit is contained in:
2023-08-06 07:09:16 +03:00
parent 5d9911e881
commit ebbe2669a6
2 changed files with 3 additions and 5 deletions

View File

@@ -99,9 +99,7 @@ def build_query(base_query, fields=[], sort_fields={}):
q = base_query.copy()
for attr, title, tp in fields:
key = attr.replace(".", "_")
if key in ("inventory_owner_username", "inventory_user_username"):
val = request.args.get(key, type=dict)
elif tp == list:
if tp == list:
val = request.args.getlist(key)
val = list(map(str, val))
else: