summaryrefslogtreecommitdiff
path: root/src/components
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/components
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/components')
-rw-r--r--src/components/AppNavigation/AppNavigationMixin.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/AppNavigation/AppNavigationMixin.js b/src/components/AppNavigation/AppNavigationMixin.js
index b163d75e..7fe63a0a 100644
--- a/src/components/AppNavigation/AppNavigationMixin.js
+++ b/src/components/AppNavigation/AppNavigationMixin.js
@@ -125,6 +125,11 @@ const AppNavigationMixin = {
icon: 'iconAccessControl',
children: [
{
+ id: 'client-sessions',
+ label: this.$t('appNavigation.clientSessions'),
+ route: '/access-control/client-sessions',
+ },
+ {
id: 'ldap',
label: this.$t('appNavigation.ldap'),
route: '/access-control/ldap',