You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.5 KiB
TypeScript
32 lines
1.5 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { PreloadAllModules, RouterModule, Routes } from '@angular/router';
|
|
|
|
|
|
const routes: Routes = [
|
|
{ path: '', redirectTo: 'authentication/login', pathMatch: 'full' },
|
|
{
|
|
path: 'authentication', loadChildren: './authentication/authentication.module#AuthenticationPageModule',
|
|
data: { preload: true, delay: 1000 }
|
|
},
|
|
{ path: 'home', loadChildren: './home/home.module#HomePageModule' },
|
|
{ path: 'profile', loadChildren: './profile/profile.module#ProfilePageModule' },
|
|
{ path: 'vacation-rule', loadChildren: './vacation-rule/vacation-rule.module#VacationRulePageModule' },
|
|
{ path: 'accrual-balances', loadChildren: './accrual-balances/accrual-balances.module#AccrualBalancesPageModule' },
|
|
{ path: 'my-team', loadChildren: './my-team/my-team.module#MyTeamPageModule' },
|
|
{ path: 'attendance', loadChildren: './attendance/attendance.module#AttendancePageModule' },
|
|
{ path: 'eit', loadChildren: './eit/eit.module#EITPageModule' },
|
|
{ path: 'absence', loadChildren: './absence/absence.module#AbsencePageModule' },
|
|
{ path: 'notification', loadChildren: './notification/notification.module#NotificationPageModule' },
|
|
{ path: 'my-specialist', loadChildren: './my-specialist/my-specialist.module#MySpecialistPageModule' },
|
|
{ path: 'my-subordinate', loadChildren: './my-subordinate/my-subordinate.module#MySubordinatePageModule' }
|
|
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [
|
|
RouterModule.forRoot(routes, { preloadingStrategy: PreloadAllModules}),
|
|
],
|
|
exports: [RouterModule]
|
|
})
|
|
export class AppRoutingModule { }
|