summaryrefslogtreecommitdiffstats
path: root/utils/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'utils/config.go')
-rw-r--r--utils/config.go9
1 files changed, 8 insertions, 1 deletions
diff --git a/utils/config.go b/utils/config.go
index 39dbca4d8..9710684e8 100644
--- a/utils/config.go
+++ b/utils/config.go
@@ -238,7 +238,6 @@ func getClientConfig(c *model.Config) map[string]string {
props["RequireEmailVerification"] = strconv.FormatBool(c.EmailSettings.RequireEmailVerification)
props["EnableSignUpWithGitLab"] = strconv.FormatBool(c.GitLabSettings.Enable)
- props["EnableSignUpWithGoogle"] = strconv.FormatBool(c.GoogleSettings.Enable)
props["ShowEmailAddress"] = strconv.FormatBool(c.PrivacySettings.ShowEmailAddress)
@@ -293,6 +292,14 @@ func getClientConfig(c *model.Config) map[string]string {
props["SamlLoginButtonText"] = *c.SamlSettings.LoginButtonText
}
+ if *License.Features.GoogleSSO {
+ props["EnableSignUpWithGoogle"] = strconv.FormatBool(c.GoogleSettings.Enable)
+ }
+
+ if *License.Features.Office365SSO {
+ props["EnableSignUpWithOffice365"] = strconv.FormatBool(c.Office365Settings.Enable)
+ }
+
if *License.Features.PasswordRequirements {
props["PasswordMinimumLength"] = fmt.Sprintf("%v", *c.PasswordSettings.MinimumLength)
props["PasswordRequireLowercase"] = strconv.FormatBool(*c.PasswordSettings.Lowercase)