summaryrefslogtreecommitdiff
path: root/src/store/index.js
diff options
context:
space:
mode:
authorSandeepa Singh <sandeepa.singh@ibm.com>2022-01-10 16:49:36 +0300
committerDixsie Wolmers <dixsiew@gmail.com>2022-02-04 17:21:05 +0300
commit05887b50f1d1b08468b401b357faf13f505ee75f (patch)
tree9a016ca5142e43e3ac7f88ecce045048270fcaa0 /src/store/index.js
parentaee27141f4c002306e9a4bf44dc4f9618a5fae62 (diff)
downloadwebui-vue-05887b50f1d1b08468b401b357faf13f505ee75f.tar.xz
Add Key clear page under Operations section
This page will allow privileged user to clear encrypted keys. - Only admin and CE login user will be able to see the page - The UI will be different for both, admin and CE login user(service) - This page is IBM only Signed-off-by: Sandeepa Singh <sandeepa.singh@ibm.com> Change-Id: Ic6fe3454de815629a6b2250daa99ab21f2b316c3
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 d7c1b22d..ba248c58 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -27,6 +27,7 @@ import AssemblyStore from './modules/HardwareStatus/AssemblyStore';
import PostCodeLogsStore from './modules/Logs/PostCodeLogsStore';
import PoliciesStore from './modules/SecurityAndAccess/PoliciesStore';
import FactoryResetStore from './modules/Operations/FactoryResetStore';
+import KeyClearStore from './modules/Operations/KeyClearStore';
import WebSocketPlugin from './plugins/WebSocketPlugin';
import DateTimeStore from './modules/Settings/DateTimeStore';
@@ -67,6 +68,7 @@ export default new Vuex.Store({
virtualMedia: VirtualMediaStore,
policies: PoliciesStore,
factoryReset: FactoryResetStore,
+ keyClear: KeyClearStore,
},
plugins: [WebSocketPlugin],
});