Changeable defaults for hideUserStats and hidePostStats

This commit is contained in:
scarlett 2018-09-04 00:48:14 +01:00
parent bdcbd110e4
commit 699ee0891d
2 changed files with 7 additions and 1 deletions

View File

@ -123,6 +123,8 @@ window.fetch('/api/statusnet/config.json')
var scopeOptionsEnabled = (config.scopeOptionsEnabled)
var formattingOptionsEnabled = (config.formattingOptionsEnabled)
var collapseMessageWithSubject = (config.collapseMessageWithSubject)
var hidePostStats = (config.hidePostStats)
var hideUserStats = (config.hideUserStats)
store.dispatch('setOption', { name: 'theme', value: theme })
store.dispatch('setOption', { name: 'background', value: background })
@ -136,6 +138,8 @@ window.fetch('/api/statusnet/config.json')
store.dispatch('setOption', { name: 'scopeOptionsEnabled', value: scopeOptionsEnabled })
store.dispatch('setOption', { name: 'formattingOptionsEnabled', value: formattingOptionsEnabled })
store.dispatch('setOption', { name: 'collapseMessageWithSubject', value: collapseMessageWithSubject })
store.dispatch('setOption', { name: 'hidePostStats', value: hidePostStats })
store.dispatch('setOption', { name: 'hideUserStats', value: hideUserStats })
if (chatDisabled) {
store.dispatch('disableChat')
}

View File

@ -10,5 +10,7 @@
"showInstanceSpecificPanel": false,
"scopeOptionsEnabled": false,
"formattingOptionsEnabled": false,
"collapseMessageWithSubject": false
"collapseMessageWithSubject": false,
"hidePostStats": false,
"hideUserStats": false
}