[Max Red] - Add prefix to localStorage

This commit is contained in:
Maxi Redigonda 2017-06-23 20:16:19 -03:00
parent 33b843352b
commit 33bfc9b2bc
2 changed files with 5 additions and 3 deletions

View File

@ -18,6 +18,7 @@ module.exports = [
'smtp-host': 'localhost',
'smtp-port': '7070',
'smtp-user': 'Wesa',
'session-prefix': 'opensupports-z6ctpq2winvfhchX2_',
'maintenance-mode': false,
'allow-attachments': true,
'max-size': 500,

View File

@ -53,6 +53,7 @@ class SessionStore {
}
storeConfigs(configs) {
this.setItem('session-prefix', configs['session-prefix']);
this.setItem('language', configs.language);
this.setItem('reCaptchaKey', configs.reCaptchaKey);
this.setItem('departments', JSON.stringify(configs.departments));
@ -106,15 +107,15 @@ class SessionStore {
}
getItem(key) {
return this.storage.getItem(key);
return this.storage.getItem(root + '_' + key);
}
setItem(key, value) {
return this.storage.setItem(key, (value !== undefined) ? value : '');
return this.storage.setItem(root + '_' + key, (value !== undefined) ? value : '');
}
removeItem(key) {
this.storage.removeItem(key);
this.storage.removeItem(root + '_' + key);
}
}