File tree 2 files changed +14
-0
lines changed
2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,11 @@ const AppNavigationMixin = {
114
114
label : this . $t ( 'appNavigation.accessControl' ) ,
115
115
icon : 'iconAccessControl' ,
116
116
children : [
117
+ {
118
+ id : 'client-sessions' ,
119
+ label : this . $t ( 'appNavigation.clientSessions' ) ,
120
+ route : '/access-control/client-sessions' ,
121
+ } ,
117
122
{
118
123
id : 'local-user-management' ,
119
124
label : this . $t ( 'appNavigation.localUserManagement' ) ,
Original file line number Diff line number Diff line change 1
1
import AppLayout from '@/layouts/AppLayout.vue' ;
2
2
import ChangePassword from '@/views/ChangePassword' ;
3
+ import ClientSessions from '@/views/AccessControl/ClientSessions' ;
3
4
import ConsoleLayout from '@/layouts/ConsoleLayout.vue' ;
4
5
import DateTimeSettings from '@/views/Configuration/DateTimeSettings' ;
5
6
import EventLogs from '@/views/Health/EventLogs' ;
@@ -121,6 +122,14 @@ const routes = [
121
122
title : i18n . t ( 'appPageTitle.sensors' ) ,
122
123
} ,
123
124
} ,
125
+ {
126
+ path : '/access-control/client-sessions' ,
127
+ name : 'client-sessions' ,
128
+ component : ClientSessions ,
129
+ meta : {
130
+ title : i18n . t ( 'appPageTitle.clientSessions' ) ,
131
+ } ,
132
+ } ,
124
133
{
125
134
path : '/access-control/local-user-management' ,
126
135
name : 'local-users' ,
You can’t perform that action at this time.
0 commit comments