fix: regexp rename error (close #4644 in #4653)

Co-authored-by: Andy Hsu <i@nn.ci>
This commit is contained in:
walloo
2023-06-26 15:15:57 +08:00
committed by GitHub
parent 21b8e7f6e5
commit e9c74f9959
3 changed files with 212 additions and 150 deletions

View File

@ -130,6 +130,7 @@ func _fs(g *gin.RouterGroup) {
g.Any("/dirs", handles.FsDirs)
g.POST("/mkdir", handles.FsMkdir)
g.POST("/rename", handles.FsRename)
g.POST("/batch_rename", handles.FsBatchRename)
g.POST("/regex_rename", handles.FsRegexRename)
g.POST("/move", handles.FsMove)
g.POST("/recursive_move", handles.FsRecursiveMove)