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, likes: true,
repeats: true repeats: true
}, },
webPushNotifications: true, webPushNotifications: false,
muteWords: [], muteWords: [],
highlight: {}, highlight: {},
interfaceLanguage: browserLocale, interfaceLanguage: browserLocale,

View file

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