Support deleting multiple files at the same time

This commit is contained in:
Dane Everitt
2020-07-11 15:33:53 -07:00
parent 7147f477e2
commit 292f0d6452
2 changed files with 34 additions and 6 deletions

View File

@@ -82,7 +82,7 @@ func Configure() *gin.Engine {
files.POST("/copy", postServerCopyFile)
files.POST("/write", postServerWriteFile)
files.POST("/create-directory", postServerCreateDirectory)
files.POST("/delete", postServerDeleteFile)
files.POST("/delete", postServerDeleteFiles)
files.POST("/compress", postServerCompressFiles)
}