Explorar o código

remove unused routes for tender and approval components

tigger hai 6 meses
pai
achega
ede39e7d86
Modificáronse 1 ficheiros con 0 adicións e 2 borrados
  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'}}},
 ];