From ff06953813a2e79b46be763385f5b44b1ac40e0a Mon Sep 17 00:00:00 2001 From: Vivek Patel Date: Wed, 22 Sep 2021 18:39:39 +0530 Subject: [PATCH] Adds LogoEnabled to namespace meta --- compose/types/namespace.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/compose/types/namespace.go b/compose/types/namespace.go index 8a7b88077..40a04f989 100644 --- a/compose/types/namespace.go +++ b/compose/types/namespace.go @@ -54,10 +54,11 @@ type ( NamespaceMeta struct { // Temporary icon & logo URLs // @todo rework this when we rework attachment management - Icon string `json:"icon,omitempty"` - IconID uint64 `json:"iconID,string"` - Logo string `json:"logo,omitempty"` - LogoID uint64 `json:"logoID,string"` + Icon string `json:"icon,omitempty"` + IconID uint64 `json:"iconID,string"` + Logo string `json:"logo,omitempty"` + LogoID uint64 `json:"logoID,string"` + LogoEnabled bool `json:"logoEnabled,omitempty"` // Warning: value of this field is now handled via resource-translation facility // struct field is kept for the convenience for now since it allows us