mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-21 09:00:12 +01:00
🎨 Improve asset renaming https://github.com/siyuan-note/siyuan/issues/11889
This commit is contained in:
parent
644257998c
commit
427293f3e6
2 changed files with 6 additions and 4 deletions
|
|
@ -159,13 +159,16 @@ func renameAsset(c *gin.Context) {
|
|||
|
||||
oldPath := arg["oldPath"].(string)
|
||||
newName := arg["newName"].(string)
|
||||
err := model.RenameAsset(oldPath, newName)
|
||||
newPath, err := model.RenameAsset(oldPath, newName)
|
||||
if nil != err {
|
||||
ret.Code = -1
|
||||
ret.Msg = err.Error()
|
||||
ret.Data = map[string]interface{}{"closeTimeout": 5000}
|
||||
return
|
||||
}
|
||||
ret.Data = map[string]interface{}{
|
||||
"newPath": newPath,
|
||||
}
|
||||
}
|
||||
|
||||
func getDocImageAssets(c *gin.Context) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue