Merge branch 'dev' into feature-permissions

This commit is contained in:
Michael Shamoon
2022-12-29 20:12:42 -08:00
60 changed files with 23029 additions and 6824 deletions

View File

@@ -157,6 +157,9 @@ class DelayedQuery:
elif k == "tags__id__all":
for tag_id in v.split(","):
criterias.append(query.Term("tag_id", tag_id))
elif k == "tags__id__none":
for tag_id in v.split(","):
criterias.append(query.Not(query.Term("tag_id", tag_id)))
elif k == "document_type__id":
criterias.append(query.Term("type_id", v))
elif k == "correspondent__isnull":