Hello All,
We have a requirement that we will send our users URL similar to below URL with /event/session-tracks/ in the URL
https://xyz.microsoftcrmportals.com/event/session-tracks?id=Event_A
But when i click this URL it is redirecting to /events/sessions/
https://xyz.microsoftcrmportals.com/event/sessions?id=Event_A
Do we need to change in the route.ts ??
{
path: "event",
component: EventComponent,
children: [
{
path: "",
redirectTo: EventDetailSections.Sessions,
pathMatch: "prefix"
},
{
path: EventDetailSections.Sessions,
component: SessionsComponent
},
{
path: EventDetailSections.SessionTracks,
component: SessiontracksComponent
},
{
path: EventDetailSections.Speakers,
component: SpeakersComponent
},
{
path: EventDetailSections.PassInformation,
component: PassesComponent
}
]
}
Kind Regards,
Abhilash.