🎨 Asset link element prompt shows more information https://github.com/siyuan-note/siyuan/issues/10714

This commit is contained in:
Daniel 2024-03-25 09:23:43 +08:00
parent b12d1f9ef3
commit 9e2a77bff7
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
4 changed files with 48 additions and 0 deletions

View file

@ -264,6 +264,7 @@ func ServeAPI(ginServer *gin.Engine) {
ginServer.Handle("POST", "/api/asset/getImageOCRText", model.CheckAuth, model.CheckReadonly, getImageOCRText)
ginServer.Handle("POST", "/api/asset/setImageOCRText", model.CheckAuth, model.CheckReadonly, setImageOCRText)
ginServer.Handle("POST", "/api/asset/fullReindexAssetContent", model.CheckAuth, model.CheckReadonly, fullReindexAssetContent)
ginServer.Handle("POST", "/api/asset/statAsset", model.CheckAuth, statAsset)
ginServer.Handle("POST", "/api/export/batchExportMd", model.CheckAuth, batchExportMd)
ginServer.Handle("POST", "/api/export/exportMd", model.CheckAuth, exportMd)