mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 12:20:28 +08:00
30 lines
817 B
Go
30 lines
817 B
Go
package node
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/configloaders"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/settings/settingutils"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
|
|
"github.com/iwind/TeaGo"
|
|
)
|
|
|
|
func init() {
|
|
TeaGo.BeforeStart(func(server *TeaGo.Server) {
|
|
server.
|
|
Helper(helpers.NewUserMustAuth(configloaders.AdminModuleCodeSetting)).
|
|
Helper(settingutils.NewAdvancedHelper("userNodes")).
|
|
Prefix("/settings/userNodes/node").
|
|
|
|
// 这里不受Helper的约束
|
|
GetPost("/createAddrPopup", new(CreateAddrPopupAction)).
|
|
GetPost("/updateAddrPopup", new(UpdateAddrPopupAction)).
|
|
|
|
// 节点相关
|
|
Helper(NewHelper()).
|
|
Get("", new(IndexAction)).
|
|
GetPost("/update", new(UpdateAction)).
|
|
Get("/install", new(InstallAction)).
|
|
|
|
EndAll()
|
|
})
|
|
}
|