diff --git a/src/app/components/participant/participant-routing.module.ts b/src/app/components/participant/participant-routing.module.ts index 68c5bf5213fccbfebf905e4e2037ce924ac41832..764917b7740a833fcc6f2db57caa4482791fffc5 100644 --- a/src/app/components/participant/participant-routing.module.ts +++ b/src/app/components/participant/participant-routing.module.ts @@ -16,25 +16,25 @@ const routes: Routes = [ data: { roles: [UserRole.PARTICIPANT] } }, { - path: 'participant/room/:roomId', + path: 'room/:roomId', component: RoomParticipantPageComponent, canActivate: [AuthenticationGuard], data: { roles: [UserRole.PARTICIPANT] } }, { - path: 'participant/room/:roomId/create-comment', + path: 'room/:roomId/create-comment', component: CommentCreatePageComponent, canActivate: [AuthenticationGuard], data: { roles: [UserRole.PARTICIPANT] } }, { - path: 'participant/room/:roomId/feedback-barometer', + path: 'room/:roomId/feedback-barometer', component: FeedbackBarometerPageComponent, canActivate: [AuthenticationGuard], data: { roles: [UserRole.PARTICIPANT] } }, { - path: 'participant/room/:roomId/:contentGroup', + path: 'room/:roomId/:contentGroup', component: ParticipantContentCarouselPageComponent, canActivate: [AuthenticationGuard], data: { roles: [UserRole.PARTICIPANT] }