Ver Fonte

remove legacy routes

tigger há 2 anos atrás
pai
commit
e40691105f
1 ficheiros alterados com 1 adições e 9 exclusões
  1. 1 9
      src/app/app.routes.ts

+ 1 - 9
src/app/app.routes.ts

@@ -3,13 +3,5 @@ import { DashboardComponent } from './dashboard/dashboard.component';
 
 export const routes: Routes = [
     { path: '', redirectTo: '/dashboard', pathMatch: 'full' },
-    {path:'dashboard', component: DashboardComponent, data: {title: 'FIS App'}},
-    {
-        path: 'quotation',
-        loadChildren: () => import('fis/quotation/quotation.module').then(m => m.QuotationModule)
-    },
-    {
-        path: 'leave',
-        loadChildren: () => import('fis/leave/leave.module').then(m => m.LeaveModule)
-    }
+    {path:'dashboard', component: DashboardComponent, data: {title: 'FIS App'}}
 ];