From 0e4094a2ade83a2aa2556f9177b7f3dafe0ba7c3 Mon Sep 17 00:00:00 2001 From: Carlos Tadeu Panato Junior Date: Wed, 14 Nov 2018 11:41:20 +0100 Subject: [PATCH] default text to SAML (#9827) --- config/default.json | 2 +- model/saml.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/default.json b/config/default.json index a5f89afefe..6cbca6a0a6 100644 --- a/config/default.json +++ b/config/default.json @@ -330,7 +330,7 @@ "NicknameAttribute": "", "LocaleAttribute": "", "PositionAttribute": "", - "LoginButtonText": "With SAML", + "LoginButtonText": "SAML", "LoginButtonColor": "", "LoginButtonBorderColor": "", "LoginButtonTextColor": "" diff --git a/model/saml.go b/model/saml.go index 528ac45cc7..c184b0350b 100644 --- a/model/saml.go +++ b/model/saml.go @@ -10,7 +10,7 @@ import ( const ( USER_AUTH_SERVICE_SAML = "saml" - USER_AUTH_SERVICE_SAML_TEXT = "With SAML" + USER_AUTH_SERVICE_SAML_TEXT = "SAML" ) type SamlAuthRequest struct {