MM-28890 Enable the gif picker, timezones, and viewing archived channels by default (#15587)

Этот коммит содержится в:
Harrison Healey
2020-09-25 11:01:09 -04:00
коммит произвёл GitHub
родитель d8622d1b07
Коммит d9e2b64a61

Просмотреть файл

@@ -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)
}
}