feat(knowledge): include tasks in knowledge queries and counts

This commit is contained in:
2026-04-08 10:27:31 -04:00
parent 0bd362f582
commit dd16b39218
2 changed files with 50 additions and 28 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ logger = logging.getLogger(__name__)
knowledge_bp = Blueprint("knowledge", __name__, url_prefix="/api/knowledge")
_VALID_TYPES = {"note", "person", "place", "list"}
_VALID_TYPES = {"note", "person", "place", "list", "task"}
_VALID_SORTS = {"modified", "created", "alpha", "type"}