Добавлено уведомление "Оплатим хостинг вместе"

This commit is contained in:
Book Pauk
2020-01-28 19:46:34 +07:00
parent efb2413720
commit 249a4564e0
4 changed files with 104 additions and 3 deletions

View File

@@ -182,6 +182,7 @@ const settingDefaults = {
imageFitWidth: true,
showServerStorageMessages: true,
showWhatsNewDialog: true,
showDonationDialog2020: true,
enableSitesFilter: true,
fontShifts: {},
@@ -204,6 +205,7 @@ const state = {
profilesRev: 0,
allowProfilesSave: false,//подстраховка для разработки
whatsNewContentHash: '',
donationRemindDate: '',
currentProfile: '',
settings: Object.assign({}, settingDefaults),
settingsRev: {},
@@ -238,6 +240,9 @@ const mutations = {
setWhatsNewContentHash(state, value) {
state.whatsNewContentHash = value;
},
setDonationRemindDate(state, value) {
state.donationRemindDate = value;
},
setCurrentProfile(state, value) {
state.currentProfile = value;
},