Skip to content
Snippets Groups Projects
Commit bf7e0393 authored by Lukas Mauß's avatar Lukas Mauß
Browse files

Fix routes for lazy-laoded participant pages

parent ccf3851d
No related merge requests found
......@@ -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] }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment