🎨 Reduce the delay in adding rows in database table view https://github.com/siyuan-note/siyuan/issues/10082

This commit is contained in:
Daniel 2024-01-07 22:53:05 +08:00
parent d5e098a285
commit 3bfbfbc7e9
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
3 changed files with 41 additions and 2 deletions

View file

@ -396,6 +396,7 @@ func ServeAPI(ginServer *gin.Engine) {
ginServer.Handle("POST", "/api/av/getAttributeView", model.CheckAuth, model.CheckReadonly, getAttributeView)
ginServer.Handle("POST", "/api/av/searchAttributeViewRelationKey", model.CheckAuth, model.CheckReadonly, searchAttributeViewRelationKey)
ginServer.Handle("POST", "/api/av/searchAttributeViewNonRelationKey", model.CheckAuth, model.CheckReadonly, searchAttributeViewNonRelationKey)
ginServer.Handle("POST", "/api/av/getAttributeViewFilterSort", model.CheckAuth, model.CheckReadonly, getAttributeViewFilterSort)
ginServer.Handle("POST", "/api/ai/chatGPT", model.CheckAuth, chatGPT)
ginServer.Handle("POST", "/api/ai/chatGPTWithAction", model.CheckAuth, chatGPTWithAction)