We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 155daaf commit fa9cf8cCopy full SHA for fa9cf8c
web/apiv2/views.py
@@ -754,8 +754,10 @@ def ext_tasks_search(request):
754
755
if term == "tags_tasks":
756
value = [int(v.id) for v in db.list_tasks(tags_tasks_like=value, limit=int(search_limit))]
757
+ term = "ids"
758
elif term == "options":
759
value = [int(v.id) for v in db.list_tasks(options_like=value, limit=search_limit)]
760
761
elif term == "ids":
762
if all([v.strip().isdigit() for v in value.split(",")]):
763
value = [int(v.strip()) for v in filter(None, value.split(","))]
0 commit comments