Parcourir la source

remove unused routes for tender and approval components

tigger il y a 6 mois
Parent
commit
ede39e7d86
1 fichiers modifiés avec 0 ajouts et 2 suppressions
  1. 0 2
      src/app/app.routes.ts

+ 0 - 2
src/app/app.routes.ts

@@ -6,7 +6,5 @@ export const routes: Routes = [
     { path: '', redirectTo: '/dashboard', pathMatch: 'full' },
     { path:'dashboard', component: DashboardComponent, data: {title: 'FIS'}},
     { path:'auth', loadChildren: () => import('angularlib/login/login.module').then(m => m.LoginModule)},
-    { path:'tender', loadChildren: () => import('fis/tender/tender.module').then(m => m.TenderModule)},
     { path:'leave', loadChildren: () => import('fis/leave/leave.module').then(m => m.LeaveModule)},
-    { path:'approval',component: ApprovalComponent, data: {title: {key:'approval', default:'Approval'}}},
 ];