mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-04 05:00:25 +08:00
27 lines
787 B
Go
27 lines
787 B
Go
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)).
|
|
GetPost("/selectPopup", new(SelectPopupAction)).
|
|
GetPost("/prices", new(PricesAction)).
|
|
GetPost("/updatePricePopup", new(UpdatePricePopupAction)).
|
|
EndAll()
|
|
})
|
|
}
|