Добавлены уведомления о выходе новой httpS версии сайта

This commit is contained in:
Book Pauk
2019-09-03 19:59:43 +07:00
parent 7670da4cba
commit cf2efc2b92
4 changed files with 138 additions and 3 deletions

View File

@@ -181,6 +181,7 @@ const settingDefaults = {
imageFitWidth: true,
showServerStorageMessages: true,
showWhatsNewDialog: true,
showMigrationDialog: true,
fontShifts: {},
showToolButton: {},
@@ -202,6 +203,7 @@ const state = {
profilesRev: 0,
allowProfilesSave: false,//подстраховка для разработки
whatsNewContentHash: '',
migrationRemindDate: '',
currentProfile: '',
settings: Object.assign({}, settingDefaults),
settingsRev: {},
@@ -236,6 +238,9 @@ const mutations = {
setWhatsNewContentHash(state, value) {
state.whatsNewContentHash = value;
},
setMigrationRemindDate(state, value) {
state.migrationRemindDate = value;
},
setCurrentProfile(state, value) {
state.currentProfile = value;
},