Skip to content

Commit

Permalink
frontend: update navigation links in ConsoleComponent to reflect new …
Browse files Browse the repository at this point in the history
…structure
  • Loading branch information
CSantosM committed Feb 24, 2025
1 parent a4bec4b commit 19995c3
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ import { ConsoleNavLink } from '../../models/sidenav.model';
export class ConsoleComponent {
navLinks: ConsoleNavLink[] = [
{ label: 'Overview', route: 'overview', icon: 'dashboard' },
{ label: 'Access & Permissions', route: 'access-permissions', icon: 'lock' },
{ label: 'Appearance', route: 'appearance', icon: 'palette' },
{ label: 'Room Preferences', route: 'room-preferences', icon: 'video_settings' },
{ label: 'Security', route: 'security-preferences', icon: 'security' },
{ label: 'About', route: 'about', icon: 'info' }
{ label: 'Rooms', route: 'room-preferences', icon: 'video_settings' },
{ label: 'Recordings', route: 'recordings', icon: 'radio_button_checked' },
// { label: 'Access & Permissions', route: 'access-permissions', icon: 'lock' },
// { label: 'Appearance', route: 'appearance', icon: 'palette' },
// { label: 'Security', route: 'security-preferences', icon: 'security' },
// { label: 'About', route: 'about', icon: 'info' }
];

constructor() {}
Expand Down

0 comments on commit 19995c3

Please sign in to comment.