🎨 Move supports searching by document block ID https://github.com/siyuan-note/siyuan/issues/16674

Signed-off-by: Daniel <845765@qq.com>
This commit is contained in:
Daniel 2025-12-23 17:10:41 +08:00
parent 6f81350279
commit 5cf09d8043
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
2 changed files with 41 additions and 35 deletions

View file

@ -1043,7 +1043,7 @@ func searchDocs(c *gin.Context) {
}
k := arg["k"].(string)
ret.Data = model.SearchDocsByKeyword(k, flashcard, excludeIDs)
ret.Data = model.SearchDocs(k, flashcard, excludeIDs)
}
func listDocsByPath(c *gin.Context) {