Implement move menu tree, hover tooltips, and custom icons
All checks were successful
Automated Container Build / build-and-push (push) Successful in 1m20s
All checks were successful
Automated Container Build / build-and-push (push) Successful in 1m20s
This commit is contained in:
parent
3802d978ed
commit
e1f009f273
4 changed files with 229 additions and 65 deletions
|
|
@ -165,6 +165,8 @@ func main() {
|
|||
protected.Get("/files/download-folder", fsHandler.DownloadFolder)
|
||||
protected.Post("/files/upload", fsHandler.Upload)
|
||||
|
||||
protected.Get("/files/folders-tree", fsHandler.GetFolderTree)
|
||||
|
||||
// File listing and download (with path jail)
|
||||
files := protected.Group("/files", middleware.PathJail(cfg.StorageDir))
|
||||
files.Get("/info/*", fsHandler.GetExtendedFileInfo)
|
||||
|
|
|
|||
Reference in a new issue