summaryrefslogtreecommitdiff
path: root/src/store/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/index.js')
-rw-r--r--src/store/index.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/store/index.js b/src/store/index.js
index a4dd16ed..a9afa310 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -30,6 +30,9 @@ import PoliciesStore from './modules/SecurityAndAccess/PoliciesStore';
import FactoryResetStore from './modules/Operations/FactoryResetStore';
import KeyClearStore from './modules/Operations/KeyClearStore';
import PciStore from './modules/HardwareStatus/PciStore';
+import SmtpStore from './modules/Settings/SmtpStore';
+import SnmpStore from './modules/Settings/SnmpStore';
+import SyslogStore from './modules/Settings/SyslogStore';
import WebSocketPlugin from './plugins/WebSocketPlugin';
import DateTimeStore from './modules/Settings/DateTimeStore';
@@ -73,6 +76,9 @@ export default new Vuex.Store({
factoryReset: FactoryResetStore,
keyClear: KeyClearStore,
pciStore: PciStore,
+ smtpStore: SmtpStore,
+ snmpStore: SnmpStore,
+ syslogStore: SyslogStore,
},
plugins: [WebSocketPlugin],
});