Skip to content

Commit d675269

Browse files
mszopinxderick-montague
authored andcommitted
Show Client Sessions tab on Intel environment
Signed-off-by: MichalX Szopinski <[email protected]> Change-Id: I69d251d9cf7b140ee16612598e3781bf666890a8
1 parent a9de914 commit d675269

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

src/env/components/AppNavigation/intel.js

+5
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,11 @@ const AppNavigationMixin = {
114114
label: this.$t('appNavigation.accessControl'),
115115
icon: 'iconAccessControl',
116116
children: [
117+
{
118+
id: 'client-sessions',
119+
label: this.$t('appNavigation.clientSessions'),
120+
route: '/access-control/client-sessions',
121+
},
117122
{
118123
id: 'local-user-management',
119124
label: this.$t('appNavigation.localUserManagement'),

src/env/router/intel.js

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import AppLayout from '@/layouts/AppLayout.vue';
22
import ChangePassword from '@/views/ChangePassword';
3+
import ClientSessions from '@/views/AccessControl/ClientSessions';
34
import ConsoleLayout from '@/layouts/ConsoleLayout.vue';
45
import DateTimeSettings from '@/views/Configuration/DateTimeSettings';
56
import EventLogs from '@/views/Health/EventLogs';
@@ -121,6 +122,14 @@ const routes = [
121122
title: i18n.t('appPageTitle.sensors'),
122123
},
123124
},
125+
{
126+
path: '/access-control/client-sessions',
127+
name: 'client-sessions',
128+
component: ClientSessions,
129+
meta: {
130+
title: i18n.t('appPageTitle.clientSessions'),
131+
},
132+
},
124133
{
125134
path: '/access-control/local-user-management',
126135
name: 'local-users',

0 commit comments

Comments
 (0)