wings/api/handlers_server_files.go
Jakob Schrettenbrunner 059ea8a047 add all old routes and handlers
add html index page when not authenticated
fixed auth's handling of empty permissions
2017-08-02 22:02:34 +02:00

52 lines
605 B
Go

package api
import "github.com/gin-gonic/gin"
func handlePostFilesFolder(c *gin.Context) {
}
func handleGetDirectory(c *gin.Context) {
}
func handlePostFileCopy(c *gin.Context) {
}
func handlePostFileMove(c *gin.Context) {
}
func handlePostFileDelete(c *gin.Context) {
}
func handlePostFileCompress(c *gin.Context) {
}
func handlePostFileDecompress(c *gin.Context) {
}
func handleGetFileStat(c *gin.Context) {
}
func handleGetFile(c *gin.Context) {
}
func handlePostFile(c *gin.Context) {
}
func handleDeleteFile(c *gin.Context) {
}
func handleGetDownloadFile(c *gin.Context) {
}