mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-11 01:50:27 +08:00
20 lines
446 B
Go
20 lines
446 B
Go
package users
|
|
|
|
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", "domain").
|
|
Prefix("/ns/users").
|
|
Post("/options", new(OptionsAction)).
|
|
EndAll()
|
|
})
|
|
}
|