From ebc3835ad4c76362f87be25f15425d7830a40d61 Mon Sep 17 00:00:00 2001 From: ewandor Date: Sat, 11 Feb 2023 18:12:32 +0100 Subject: [PATCH] Empty dashboard module --- front/app/src/app/app-routing.module.ts | 12 ++++++------ .../src/app/views/dashboard/dashboard.module.ts | 14 ++++++++++++++ 2 files changed, 20 insertions(+), 6 deletions(-) create mode 100644 front/app/src/app/views/dashboard/dashboard.module.ts diff --git a/front/app/src/app/app-routing.module.ts b/front/app/src/app/app-routing.module.ts index 4873a96a..9db3322b 100644 --- a/front/app/src/app/app-routing.module.ts +++ b/front/app/src/app/app-routing.module.ts @@ -15,11 +15,11 @@ const routes: Routes = [ title: 'Home' }, children: [ - // { - // path: 'dashboard', - // loadChildren: () => - // import('./views/dashboard/dashboard.module').then((m) => m.DashboardModule) - // }, + { + path: 'dashboard', + loadChildren: () => + import('./views/dashboard/dashboard.module').then((m) => m.DashboardModule) + }, { path: 'entities', loadChildren: () => @@ -37,7 +37,7 @@ const routes: Routes = [ }, ] } - ]; +]; @NgModule({ diff --git a/front/app/src/app/views/dashboard/dashboard.module.ts b/front/app/src/app/views/dashboard/dashboard.module.ts new file mode 100644 index 00000000..50e5b88e --- /dev/null +++ b/front/app/src/app/views/dashboard/dashboard.module.ts @@ -0,0 +1,14 @@ +import { CommonModule } from '@angular/common'; +import { NgModule } from '@angular/core'; + + + +@NgModule({ + imports: [ + CommonModule, + ], + declarations: [ + ] +}) +export class DashboardModule { +}