This commit is contained in:
Liang Ding 2022-10-02 10:46:46 +08:00
parent 1475fd9747
commit 2155a56a7b
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
2 changed files with 10 additions and 3 deletions

View file

@ -48,8 +48,9 @@ func getBackmentionDoc(c *gin.Context) {
}
defID := arg["defID"].(string)
refTreeID := arg["refTreeID"].(string)
keyword := ""
backlinks := model.GetBackmentionDoc(defID, keyword)
backlinks := model.GetBackmentionDoc(defID, refTreeID, keyword)
ret.Data = map[string]interface{}{
"backmentions": backlinks,
}