mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-04 04:54:32 +08:00
24 lines
657 B
Go
24 lines
657 B
Go
package tasks
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/configloaders"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/clusters/clusterutils"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
|
|
"github.com/iwind/TeaGo"
|
|
)
|
|
|
|
func init() {
|
|
TeaGo.BeforeStart(func(server *TeaGo.Server) {
|
|
server.
|
|
Helper(helpers.NewUserMustAuth(configloaders.AdminModuleCodeNode)).
|
|
Helper(clusterutils.NewClustersHelper()).
|
|
Prefix("/clusters/tasks").
|
|
GetPost("/listPopup", new(ListPopupAction)).
|
|
Post("/check", new(CheckAction)).
|
|
Post("/delete", new(DeleteAction)).
|
|
Post("/deleteBatch", new(DeleteBatchAction)).
|
|
|
|
EndAll()
|
|
})
|
|
}
|