Files
EdgeAdmin/internal/web/actions/default/servers/server/index.go

23 lines
470 B
Go
Raw Normal View History

2020-08-21 12:32:16 +08:00
package server
import (
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
"strconv"
)
type IndexAction struct {
actionutils.ParentAction
}
func (this *IndexAction) Init() {
this.Nav("", "index", "index")
this.SecondMenu("index")
}
func (this *IndexAction) RunGet(params struct {
ServerId int64
}) {
2020-09-21 11:37:24 +08:00
// TODO 等看板实现后,需要跳转到看板
2020-10-10 19:22:17 +08:00
this.RedirectURL("/servers/server/log?serverId=" + strconv.FormatInt(params.ServerId, 10))
2020-08-21 12:32:16 +08:00
}