fix: mounted image were not being detected correctly

perf: add support for CD-ROM mode when mounting image
perf: add a loading state during login
perf: add changelog link in settings
This commit is contained in:
wj-xiao
2025-02-21 14:52:48 +08:00
parent 9c0c50140b
commit b5e48a07e8
10 changed files with 116 additions and 71 deletions

View File

@@ -14,4 +14,5 @@ func storageRouter(r *gin.Engine) {
api.GET("/storage/image", service.GetImages) // get image list
api.GET("/storage/image/mounted", service.GetMountedImage) // get mounted image
api.POST("/storage/image/mount", service.MountImage) // mount image
api.GET("/storage/cdrom", service.GetCdRom) // get CD-ROM flag
}