summaryrefslogtreecommitdiff
path: root/src/store/index.js
diff options
context:
space:
mode:
authorSukanya Pandey <sukapan1@in.ibm.com>2020-12-02 16:34:09 +0300
committerDerick Montague <derick.montague@ibm.com>2020-12-16 02:12:18 +0300
commit34efde291781c01c78e4363d919cdf4d5c90ae43 (patch)
tree02463d010d1ecafec1ec423638cac99d04f768e7 /src/store/index.js
parent8f030bac11637fcd0a005907b558d7accbff68bd (diff)
downloadwebui-vue-34efde291781c01c78e4363d919cdf4d5c90ae43.tar.xz
Add client sessions page
- This page will show the list of sessions that are currently connected to the BMC. APIs used: - To get all the sessions API used is `/redfish/v1/SessionService/Sessions` - To delete the sessions API used is `/redfish/v1/SessionService/Sessions/<session id>` Signed-off-by: Sukanya Pandey <sukapan1@in.ibm.com> Change-Id: Ia81f62cbbea749809b9b7f7e62356cfe2db7fc18
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 b4a77d82..151eb68c 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -3,6 +3,7 @@ import Vuex from 'vuex';
import GlobalStore from './modules/GlobalStore';
import AuthenticationStore from './modules/Authentication/AuthenticanStore';
+import ClientSessions from './modules/AccessControl/ClientSessionsStore';
import LdapStore from './modules/AccessControl/LdapStore';
import LocalUserManagementStore from './modules/AccessControl/LocalUserMangementStore';
import SslCertificatesStore from './modules/AccessControl/SslCertificatesStore';
@@ -36,6 +37,7 @@ export default new Vuex.Store({
modules: {
global: GlobalStore,
authentication: AuthenticationStore,
+ clientSessions: ClientSessions,
dateTime: DateTimeStore,
ldap: LdapStore,
localUsers: LocalUserManagementStore,