Add chmod endpoint to server files

This commit is contained in:
Matthew Penner
2020-11-29 13:07:45 -07:00
parent da9ace5d9d
commit f62f714863
3 changed files with 74 additions and 0 deletions

View File

@@ -87,6 +87,7 @@ func Configure() *gin.Engine {
files.POST("/delete", postServerDeleteFiles)
files.POST("/compress", postServerCompressFiles)
files.POST("/decompress", postServerDecompressFiles)
files.POST("/chmod", postServerChmodFile)
}
backup := server.Group("/backup")