2020-12-04 16:00:55 +08:00
|
|
|
package users
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/configloaders"
|
2021-08-26 14:02:53 +08:00
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/users/accesskeys"
|
2020-12-04 16:00:55 +08:00
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
|
|
|
|
|
"github.com/iwind/TeaGo"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
TeaGo.BeforeStart(func(server *TeaGo.Server) {
|
|
|
|
|
server.
|
|
|
|
|
Helper(helpers.NewUserMustAuth(configloaders.AdminModuleCodeUser)).
|
|
|
|
|
Data("teaMenu", "users").
|
|
|
|
|
Prefix("/users").
|
|
|
|
|
Get("", new(IndexAction)).
|
|
|
|
|
GetPost("/createPopup", new(CreatePopupAction)).
|
|
|
|
|
Get("/user", new(UserAction)).
|
|
|
|
|
GetPost("/update", new(UpdateAction)).
|
|
|
|
|
Post("/delete", new(DeleteAction)).
|
2020-12-30 22:00:21 +08:00
|
|
|
GetPost("/features", new(FeaturesAction)).
|
2022-01-05 10:45:28 +08:00
|
|
|
GetPost("/verifyPopup", new(VerifyPopupAction)).
|
2021-06-16 10:48:45 +08:00
|
|
|
|
|
|
|
|
// AccessKeys
|
|
|
|
|
Prefix("/users/accessKeys").
|
|
|
|
|
Get("", new(accesskeys.IndexAction)).
|
|
|
|
|
GetPost("/createPopup", new(accesskeys.CreatePopupAction)).
|
|
|
|
|
Post("/delete", new(accesskeys.DeleteAction)).
|
|
|
|
|
Post("/updateIsOn", new(accesskeys.UpdateIsOnAction)).
|
2020-12-04 16:00:55 +08:00
|
|
|
EndAll()
|
|
|
|
|
})
|
|
|
|
|
}
|