2021-05-25 15:47:40 +08:00
|
|
|
package clusters
|
|
|
|
|
|
|
|
|
|
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.AdminModuleCodeNS)).
|
|
|
|
|
Data("teaMenu", "ns").
|
|
|
|
|
Data("teaSubMenu", "cluster").
|
|
|
|
|
Prefix("/ns/clusters").
|
|
|
|
|
Get("", new(IndexAction)).
|
|
|
|
|
GetPost("/create", new(CreateAction)).
|
2021-05-27 17:09:53 +08:00
|
|
|
Post("/options", new(OptionsAction)).
|
2021-05-25 15:47:40 +08:00
|
|
|
EndAll()
|
|
|
|
|
})
|
|
|
|
|
}
|