From 7a75c6421160a5c30d2ab7f9b2bef6014fe9288d Mon Sep 17 00:00:00 2001 From: Denis Arh Date: Thu, 31 Oct 2019 10:57:19 +0100 Subject: [PATCH] Change crust/corteza OIDC provider label --- system/types/settings.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/types/settings.go b/system/types/settings.go index e094f6eae..41be5f010 100644 --- a/system/types/settings.go +++ b/system/types/settings.go @@ -164,9 +164,9 @@ func (set *ExternalAuthProviderSet) DecodeKV(kv settings.KV, prefix string) (err case "linkedin": p.Label = "LinkedIn" case "corteza-iam", "corteza", "corteza-one": - p.Label = "Corteza One" + p.Label = "Corteza IAM" case "crust-iam", "crust", "crust-unify": - p.Label = "Crust Unify" + p.Label = "Crust IAM" default: if strings.HasPrefix(p.Handle, oidcPrefix) { p.Label = strings.Title(p.Handle[len(oidcPrefix):])