2020-12-10 15:02:55 +08:00
|
|
|
package regions
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/configloaders"
|
|
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
|
|
|
|
|
"github.com/iwind/TeaGo"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
TeaGo.BeforeStart(func(server *TeaGo.Server) {
|
|
|
|
|
server.
|
|
|
|
|
Helper(helpers.NewUserMustAuth(configloaders.AdminModuleCodeNode)).
|
|
|
|
|
Data("teaMenu", "clusters").
|
|
|
|
|
Data("teaSubMenu", "region").
|
|
|
|
|
Prefix("/clusters/regions").
|
|
|
|
|
Get("", new(IndexAction)).
|
|
|
|
|
GetPost("/createPopup", new(CreatePopupAction)).
|
|
|
|
|
GetPost("/updatePopup", new(UpdatePopupAction)).
|
|
|
|
|
Post("/delete", new(DeleteAction)).
|
|
|
|
|
Post("/sort", new(SortAction)).
|
2020-12-10 16:11:41 +08:00
|
|
|
GetPost("/selectPopup", new(SelectPopupAction)).
|
2020-12-10 15:02:55 +08:00
|
|
|
EndAll()
|
|
|
|
|
})
|
|
|
|
|
}
|