aboutsummaryrefslogtreecommitdiffstats
path: root/src/electron/Settings.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/electron/Settings.js')
-rw-r--r--src/electron/Settings.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/electron/Settings.js b/src/electron/Settings.js
index d4f0d25bf..743d48632 100644
--- a/src/electron/Settings.js
+++ b/src/electron/Settings.js
@@ -33,6 +33,10 @@ export default class Settings {
33 return this.store; 33 return this.store;
34 } 34 }
35 35
36 get allSerialized() {
37 return toJS(this.store);
38 }
39
36 get(key) { 40 get(key) {
37 return this.store[key]; 41 return this.store[key];
38 } 42 }