default webPush to false, because having it at true leads to some problems with

local dev mode. Instances can re-enable it, and BE can default it to true in config.exs
This commit is contained in:
Henry Jameson 2018-12-20 09:15:30 +03:00
parent b65ac128c1
commit d0b47488fb
2 changed files with 3 additions and 2 deletions

View File

@ -24,7 +24,7 @@ const defaultState = {
likes: true,
repeats: true
},
webPushNotifications: true,
webPushNotifications: false,
muteWords: [],
highlight: {},
interfaceLanguage: browserLocale,

View File

@ -16,5 +16,6 @@
"alwaysShowSubjectInput": true,
"hidePostStats": false,
"hideUserStats": false,
"loginMethod": "password"
"loginMethod": "password",
"webPushNotifications": false
}