2020-09-06 16:19:34 +08:00
|
|
|
package api
|
|
|
|
|
|
|
|
|
|
import (
|
2020-12-03 11:03:12 +08:00
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/configloaders"
|
2023-06-05 09:41:52 +08:00
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/settings/api/node"
|
2020-10-10 20:28:36 +08:00
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/settings/settingutils"
|
2020-09-06 16:19:34 +08:00
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
|
|
|
|
|
"github.com/iwind/TeaGo"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
TeaGo.BeforeStart(func(server *TeaGo.Server) {
|
|
|
|
|
server.
|
2020-12-03 11:03:12 +08:00
|
|
|
Helper(helpers.NewUserMustAuth(configloaders.AdminModuleCodeSetting)).
|
2020-09-06 16:19:34 +08:00
|
|
|
Helper(NewHelper()).
|
2020-12-14 21:24:21 +08:00
|
|
|
Helper(settingutils.NewAdvancedHelper("apiNodes")).
|
2023-06-05 09:41:52 +08:00
|
|
|
Prefix("/settings/api").
|
2020-09-06 16:19:34 +08:00
|
|
|
Get("", new(IndexAction)).
|
2022-01-19 16:53:38 +08:00
|
|
|
Get("/methodStats", new(MethodStatsAction)).
|
2020-10-10 20:28:36 +08:00
|
|
|
GetPost("/node/createPopup", new(node.CreatePopupAction)).
|
2020-10-10 20:41:33 +08:00
|
|
|
Post("/delete", new(DeleteAction)).
|
2020-09-06 16:19:34 +08:00
|
|
|
EndAll()
|
|
|
|
|
})
|
|
|
|
|
}
|