mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-21 00:30:26 +08:00
13 lines
385 B
Go
13 lines
385 B
Go
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
//go:build !plus
|
|
|
|
package ui
|
|
|
|
import "github.com/TeaOSLab/EdgeCommon/pkg/systemconfigs"
|
|
|
|
func (this *IndexAction) filterConfig(config *systemconfigs.AdminUIConfig) {
|
|
this.Data["supportModuleCDN"] = true
|
|
this.Data["supportModuleNS"] = true
|
|
this.Data["nsIsVisible"] = false
|
|
}
|