From c0509042a0f8ee1e38ef7f007f876693e3885ac0 Mon Sep 17 00:00:00 2001 From: Patrick Pacher Date: Fri, 30 Oct 2020 15:32:23 +0100 Subject: [PATCH] Add stackable annotation to endpoint rules --- profile/config.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/profile/config.go b/profile/config.go index 0ffe357e..c48ae756 100644 --- a/profile/config.go +++ b/profile/config.go @@ -186,6 +186,7 @@ Examples: OptType: config.OptTypeStringArray, DefaultValue: []string{}, Annotations: config.Annotations{ + config.StackableAnnotation: true, config.DisplayHintAnnotation: endpoints.DisplayHintEndpointList, config.DisplayOrderAnnotation: cfgOptionEndpointsOrder, config.CategoryAnnotation: "Rules", @@ -207,6 +208,7 @@ Examples: OptType: config.OptTypeStringArray, DefaultValue: []string{"+ Localhost"}, Annotations: config.Annotations{ + config.StackableAnnotation: true, config.DisplayHintAnnotation: endpoints.DisplayHintEndpointList, config.DisplayOrderAnnotation: cfgOptionServiceEndpointsOrder, config.CategoryAnnotation: "Rules",