2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 06:47:20 +08:00

feat: app支持排序

This commit is contained in:
2026-01-12 22:17:18 +08:00
parent 1e5181c88e
commit bb28e5ef6d
7 changed files with 127 additions and 40 deletions

View File

@@ -17,3 +17,7 @@ type AppUpdateShow struct {
Slug string `json:"slug" form:"slug" validate:"required|exists:apps,slug"`
Show bool `json:"show" form:"show"`
}
type AppUpdateOrder struct {
Slugs []string `json:"slugs" form:"slugs" validate:"required"`
}