summaryrefslogtreecommitdiff
path: root/src/store/index.js
diff options
context:
space:
mode:
authorVitalii Lysak <v.lysak@dunice.net>2022-09-19 17:02:28 +0300
committerVitalii Lysak <v.lysak@dunice.net>2022-09-19 17:02:28 +0300
commit30f4e9777b157fe7023a9cf02c7d53737d2e2974 (patch)
tree975f963652021cec858f1c08b3a589432562b770 /src/store/index.js
parent8a20e665fe0242d8fe075766a7fcfb46b820d12b (diff)
downloadwebui-vue-30f4e9777b157fe7023a9cf02c7d53737d2e2974.tar.xz
upd syslog and smtp
Diffstat (limited to 'src/store/index.js')
-rw-r--r--src/store/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/store/index.js b/src/store/index.js
index a30f71e2..a9afa310 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -32,6 +32,7 @@ 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';
@@ -77,6 +78,7 @@ export default new Vuex.Store({
pciStore: PciStore,
smtpStore: SmtpStore,
snmpStore: SnmpStore,
+ syslogStore: SyslogStore,
},
plugins: [WebSocketPlugin],
});