summaryrefslogtreecommitdiffstats
path: root/model/license.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/license.go')
-rw-r--r--model/license.go8
1 files changed, 7 insertions, 1 deletions
diff --git a/model/license.go b/model/license.go
index a77a7349a..a60695890 100644
--- a/model/license.go
+++ b/model/license.go
@@ -36,6 +36,7 @@ type Features struct {
LDAP *bool `json:"ldap"`
MFA *bool `json:"mfa"`
GoogleSSO *bool `json:"google_sso"`
+ Office365SSO *bool `json:"office365_sso"`
Compliance *bool `json:"compliance"`
CustomBrand *bool `json:"custom_brand"`
MHPNS *bool `json:"mhpns"`
@@ -67,7 +68,12 @@ func (f *Features) SetDefaults() {
if f.GoogleSSO == nil {
f.GoogleSSO = new(bool)
- *f.GoogleSSO = *f.FutureFeatures
+ *f.GoogleSSO = true
+ }
+
+ if f.Office365SSO == nil {
+ f.Office365SSO = new(bool)
+ *f.Office365SSO = true
}
if f.Compliance == nil {