summaryrefslogtreecommitdiffstats
path: root/model
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2017-05-04 11:11:28 -0700
committerChristopher Speller <crspeller@gmail.com>2017-05-04 14:11:28 -0400
commit4f074fed0d653a28779ac586e418341232d43e95 (patch)
tree8598c8920f460a81f6fd2a8da05bfc86abc31e45 /model
parent152bc14fcb7c276fbf053c9f70921ad7f8180167 (diff)
downloadchat-4f074fed0d653a28779ac586e418341232d43e95.tar.gz
chat-4f074fed0d653a28779ac586e418341232d43e95.tar.bz2
chat-4f074fed0d653a28779ac586e418341232d43e95.zip
PLT-6444 switching SAML props to default true (#6330)
Diffstat (limited to 'model')
-rw-r--r--model/config.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/model/config.go b/model/config.go
index 7c87c05f0..9d651035b 100644
--- a/model/config.go
+++ b/model/config.go
@@ -1002,12 +1002,12 @@ func (o *Config) SetDefaults() {
if o.SamlSettings.Verify == nil {
o.SamlSettings.Verify = new(bool)
- *o.SamlSettings.Verify = false
+ *o.SamlSettings.Verify = true
}
if o.SamlSettings.Encrypt == nil {
o.SamlSettings.Encrypt = new(bool)
- *o.SamlSettings.Encrypt = false
+ *o.SamlSettings.Encrypt = true
}
if o.SamlSettings.IdpUrl == nil {