Skip to content

Commit

Permalink
frontend: Used unatuhorized shared component
Browse files Browse the repository at this point in the history
  • Loading branch information
CSantosM committed Oct 18, 2024
1 parent 0ea07c0 commit 4927c17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/app/app.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { HomeComponent } from '@app/pages/home/home.component';
import { VideoRoomComponent } from '@app/pages/video-room/video-room.component';
import { ConsoleComponent } from '@app/pages/console/console.component';
import { roomGuard } from '@app/guards/room.guard';
import { UnauthorizedComponent } from '@app/pages/unauthorized/unauthorized.component';
import { embeddedGuard } from '@app/guards/embedded.guard';
import { AppearanceComponent } from '@app/pages/console/appearance/appearance.component';
import { RoomConfigComponent } from '@app/pages/console/room-config/room-config.component';
import { nonEmbeddedGuard } from './guards/non-embedded.guard';
import { UnauthorizedComponent } from 'shared-call-components';
export const routes: Routes = [
{ path: '', redirectTo: 'console', pathMatch: 'full' },
{ path: 'home', component: HomeComponent, canActivate: [nonEmbeddedGuard] },
Expand Down

0 comments on commit 4927c17

Please sign in to comment.