From d9e2b64a61d0a52c881f40e56405fd36f0221629 Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Fri, 25 Sep 2020 11:01:09 -0400 Subject: [PATCH] MM-28890 Enable the gif picker, timezones, and viewing archived channels by default (#15587) --- model/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/model/config.go b/model/config.go index 04fbd8acc8..50f9b0cf23 100644 --- a/model/config.go +++ b/model/config.go @@ -626,7 +626,7 @@ func (s *ServiceSettings) SetDefaults(isUpdate bool) { } if s.EnableGifPicker == nil { - s.EnableGifPicker = NewBool(false) + s.EnableGifPicker = NewBool(true) } if s.GfycatApiKey == nil || *s.GfycatApiKey == "" { @@ -1899,7 +1899,7 @@ func (s *TeamSettings) SetDefaults() { } if s.ExperimentalViewArchivedChannels == nil { - s.ExperimentalViewArchivedChannels = NewBool(false) + s.ExperimentalViewArchivedChannels = NewBool(true) } if s.LockTeammateNameDisplay == nil { @@ -2711,7 +2711,7 @@ func (s *DisplaySettings) SetDefaults() { } if s.ExperimentalTimezone == nil { - s.ExperimentalTimezone = NewBool(false) + s.ExperimentalTimezone = NewBool(true) } }