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

35 lines
711 B
Go
Raw Normal View History

2020-08-21 21:09:42 +08:00
package locations
import (
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
2021-01-03 20:25:15 +08:00
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/dao"
2020-08-21 21:09:42 +08:00
)
type IndexAction struct {
actionutils.ParentAction
}
func (this *IndexAction) Init() {
this.Nav("", "setting", "index")
this.SecondMenu("locations")
}
func (this *IndexAction) RunGet(params struct {
ServerId int64
}) {
2021-01-03 20:25:15 +08:00
webConfig, err := dao.SharedHTTPWebDAO.FindWebConfigWithServerId(this.AdminContext(), params.ServerId)
2020-09-21 19:51:50 +08:00
if err != nil {
this.ErrorPage(err)
return
}
this.Data["webId"] = webConfig.Id
if webConfig.Locations != nil {
this.Data["locations"] = webConfig.Locations
} else {
this.Data["locations"] = []interface{}{}
}
2020-08-21 21:09:42 +08:00
this.Show()
}