059ea8a047
add html index page when not authenticated fixed auth's handling of empty permissions
52 lines
605 B
Go
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) {
|
|
|
|
}
|