Skip to content

Commit 676c98b

Browse files
committed
fix route of users to appusers
1 parent ee05cf6 commit 676c98b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/app/core/shell/sidenav/frequent-activities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const frequentActivities: any[] = [
2525
toolTip: 'Reports'
2626
},
2727
{
28-
path: '/users',
28+
path: '/appusers',
2929
icon: 'users',
3030
toolTip: 'Users'
3131
},

src/app/core/shell/sidenav/sidenav.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ export class SidenavComponent implements OnInit, AfterViewInit {
169169
this.pushActivity('/accounting');
170170
} else if (activity.includes('/reports')) {
171171
this.pushActivity('/reports');
172-
} else if (activity.includes('/users')) {
173-
this.pushActivity('/users');
172+
} else if (activity.includes('/appusers')) {
173+
this.pushActivity('/appusers');
174174
} else if (activity.includes('/organization')) {
175175
this.pushActivity('/organization');
176176
} else if (activity.includes('/system')) {

src/app/home/activities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const activities: any[] = [
33
{ activity: 'groups', path: '/groups' },
44
{ activity: 'centers', path: '/centers' },
55
{ activity: 'accounting', path: '/accounting' },
6-
{ activity: 'users', path: '/users' },
6+
{ activity: 'users', path: '/appusers' },
77
{ activity: 'organization', path: '/organization' },
88
{ activity: 'system', path: '/system' },
99
{ activity: 'templates', path: '/templates' },

0 commit comments

Comments
 (0)