diff --git a/model/license.go b/model/license.go index d83a61f901..dbdc296e4f 100644 --- a/model/license.go +++ b/model/license.go @@ -52,6 +52,7 @@ type License struct { SkuName string `json:"sku_name"` SkuShortName string `json:"sku_short_name"` IsTrial bool `json:"is_trial"` + IsGovSku bool `json:"is_gov_sku"` } type Customer struct { diff --git a/utils/license.go b/utils/license.go index 83d92375ea..96a228ba8e 100644 --- a/utils/license.go +++ b/utils/license.go @@ -200,6 +200,7 @@ func GetClientLicense(l *model.License) map[string]string { props["SharedChannels"] = strconv.FormatBool(*l.Features.SharedChannels) props["RemoteClusterService"] = strconv.FormatBool(*l.Features.RemoteClusterService) props["IsTrial"] = strconv.FormatBool(l.IsTrial) + props["IsGovSku"] = strconv.FormatBool(l.IsGovSku) } return props