2024-05-17 17:56:37 +08:00
|
|
|
// Copyright 2022 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
2022-07-03 22:09:27 +08:00
|
|
|
//go:build !plus
|
|
|
|
|
|
|
|
|
|
package clusterutils
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
2023-06-28 16:18:52 +08:00
|
|
|
"github.com/iwind/TeaGo/actions"
|
2022-07-03 22:09:27 +08:00
|
|
|
"github.com/iwind/TeaGo/maps"
|
|
|
|
|
)
|
|
|
|
|
|
2023-06-28 16:18:52 +08:00
|
|
|
func (this *ClusterHelper) filterMenuItems1(items []maps.Map, info *pb.FindEnabledNodeClusterConfigInfoResponse, clusterIdString string, selectedItem string, actionPtr actions.ActionWrapper) []maps.Map {
|
2022-07-03 22:09:27 +08:00
|
|
|
return items
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-28 16:18:52 +08:00
|
|
|
func (this *ClusterHelper) filterMenuItems2(items []maps.Map, info *pb.FindEnabledNodeClusterConfigInfoResponse, clusterIdString string, selectedItem string, actionPtr actions.ActionWrapper) []maps.Map {
|
2022-07-03 22:09:27 +08:00
|
|
|
return items
|
|
|
|
|
}
|