I need to allow the users of my application to change the default route when they want: I have a parameter page where they can select the "page" they want to show first when log on.
For example for now, they are redirected to Day when they log on, but they want to be able to change that and to be redirected on week or month when they log on if they want.
{ path: 'planification', component: PlanificationComponent,
children: [
{ path: '', redirectTo: 'Day', pathMatch: 'full' },
{ path: 'day', component: DayComponent },
{ path: 'week', component: WeekComponent },
{ path: 'month', component: MonthComponent }]
}
How can I do that?
@angular/core: 2.4.7
@angular/router: 3.4.7
Thanks for your help!