summaryrefslogtreecommitdiff
path: root/src/store/index.js
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-03-25 01:25:24 +0300
committerDerick Montague <derick.montague@ibm.com>2020-04-08 21:58:55 +0300
commit37393810fa1ed2ae69ec05d0b19887e27760d48e (patch)
tree55381170946aed7c856de354d7ae8e0614fadc30 /src/store/index.js
parentb346406f3aa407869a3c868fb14322fc529673a3 (diff)
downloadwebui-vue-37393810fa1ed2ae69ec05d0b19887e27760d48e.tar.xz
Add SSL Certificates page
Adds ability to view, add, replace, and delete SSL certificates in GUI. Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: I5cf9fa7bbd588dfb22f2431eed0b5976ff860703
Diffstat (limited to 'src/store/index.js')
-rw-r--r--src/store/index.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/store/index.js b/src/store/index.js
index 08ada05e..0180213d 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -4,6 +4,7 @@ import Vuex from 'vuex';
import GlobalStore from './modules/GlobalStore';
import AuthenticationStore from './modules/Authentication/AuthenticanStore';
import LocalUserManagementStore from './modules/AccessControl/LocalUserMangementStore';
+import SslCertificatesStore from './modules/AccessControl/SslCertificatesStore';
import OverviewStore from './modules/Overview/OverviewStore';
import FirmwareStore from './modules/Configuration/FirmwareStore';
import BootSettingsStore from './modules/Control/BootSettingsStore';
@@ -32,7 +33,8 @@ export default new Vuex.Store({
powerControl: PowerControlStore,
networkSettings: NetworkSettingStore,
eventLog: EventLogStore,
- sensors: SensorsStore
+ sensors: SensorsStore,
+ sslCertificates: SslCertificatesStore
},
plugins: [WebSocketPlugin]
});