Files
waf-platform/EdgeUser/internal/web/actions/default/portal/index.go
2026-02-04 20:27:13 +08:00

21 lines
444 B
Go

// Copyright 2024 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
package portal
import "github.com/TeaOSLab/EdgeUser/internal/web/actions/actionutils"
type IndexAction struct {
actionutils.PortalAction
}
func (this *IndexAction) Init() {
this.Nav("", "", "")
}
func (this *IndexAction) RunGet(params struct{}) {
// 检测是否自动跳转到HTTPS
this.CheckHTTPSRedirecting()
this.Show()
}