mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
MM-24386/MM-24465 Enable link previews and full push notifications by default (#14565)
* MM-24386 Update default push notification contents to full * MM-24465 Enable link previews by default * Fix a unit test relying on the old default
This commit is contained in:
@@ -1296,6 +1296,7 @@ func TestAllPushNotifications(t *testing.T) {
|
||||
defer pushServer.Close()
|
||||
|
||||
th.App.UpdateConfig(func(cfg *model.Config) {
|
||||
*cfg.EmailSettings.PushNotificationContents = model.GENERIC_NOTIFICATION
|
||||
*cfg.EmailSettings.PushNotificationServer = pushServer.URL
|
||||
})
|
||||
|
||||
|
||||
@@ -369,7 +369,7 @@ func (s *ServiceSettings) SetDefaults(isUpdate bool) {
|
||||
}
|
||||
|
||||
if s.EnableLinkPreviews == nil {
|
||||
s.EnableLinkPreviews = NewBool(false)
|
||||
s.EnableLinkPreviews = NewBool(true)
|
||||
}
|
||||
|
||||
if s.EnableTesting == nil {
|
||||
@@ -1459,7 +1459,7 @@ func (s *EmailSettings) SetDefaults(isUpdate bool) {
|
||||
}
|
||||
|
||||
if s.PushNotificationContents == nil {
|
||||
s.PushNotificationContents = NewString(GENERIC_NOTIFICATION)
|
||||
s.PushNotificationContents = NewString(FULL_NOTIFICATION)
|
||||
}
|
||||
|
||||
if s.EnableEmailBatching == nil {
|
||||
|
||||
Reference in New Issue
Block a user