From 4b42d4e2cf3f84d911cc86784bd22fa2946a785b Mon Sep 17 00:00:00 2001 From: Evgeny Lupanov Date: Thu, 26 May 2022 12:30:38 +0300 Subject: [PATCH] chore: remove bundles pages --- src/app/pages/pages-menu.ts | 26 -------------------------- src/app/pages/pages-routing.module.ts | 5 ----- 2 files changed, 31 deletions(-) diff --git a/src/app/pages/pages-menu.ts b/src/app/pages/pages-menu.ts index 690f31e8..6134b318 100644 --- a/src/app/pages/pages-menu.ts +++ b/src/app/pages/pages-menu.ts @@ -12,32 +12,6 @@ export const MENU_ITEMS: NbMenuItem[] = [ icon: 'home-outline', link: '/pages/iot-dashboard', }, - { - title: 'Backend Integration', - icon: 'settings-outline', - children: [ - { - title: 'PHP', - link: '/pages/backend-integration/php', - }, - { - title: '.NET Core', - link: '/pages/backend-integration/dot-net-core', - }, - { - title: 'Node JS', - link: '/pages/backend-integration/node-js', - }, - { - title: 'Java', - link: '/pages/backend-integration/java', - }, - { - title: 'E-commerce', - link: '/pages/backend-integration/ecommerce', - }, - ], - }, { title: 'FEATURES', group: true, diff --git a/src/app/pages/pages-routing.module.ts b/src/app/pages/pages-routing.module.ts index 990c630b..376cc4fa 100644 --- a/src/app/pages/pages-routing.module.ts +++ b/src/app/pages/pages-routing.module.ts @@ -18,11 +18,6 @@ const routes: Routes = [{ path: 'iot-dashboard', component: DashboardComponent, }, - { - path: 'backend-integration', - loadChildren: () => import('./backend-integration/backend-integration.module') - .then(m => m.BackendIntegrationModule), - }, { path: 'layout', loadChildren: () => import('./layout/layout.module')