24 lines
559 B
Go
24 lines
559 B
Go
//go:build plus
|
|
|
|
package users
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/configloaders"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/plus"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
|
|
"github.com/iwind/TeaGo"
|
|
)
|
|
|
|
func init() {
|
|
TeaGo.BeforeStart(func(server *TeaGo.Server) {
|
|
server.
|
|
Helper(plus.NewHelper(plus.ComponentCodeNS)).
|
|
Helper(helpers.NewUserMustAuth(configloaders.AdminModuleCodeNS)).
|
|
Data("teaMenu", "ns").
|
|
Data("teaSubMenu", "domain").
|
|
Prefix("/ns/users").
|
|
Post("/options", new(OptionsAction)).
|
|
EndAll()
|
|
})
|
|
}
|