Project

General

Profile

1
import {NgModule} from '@angular/core';
2
import {RouterModule} from '@angular/router';
3

    
4
@NgModule({
5
  imports: [
6
    RouterModule.forChild([
7
      {
8
        path: 'entities',
9
        loadChildren: () => import('../openaireLibrary/dashboard/entity/entities.module').then(m => m.EntitiesModule),
10
        pathMatch: 'full'
11
      },
12
      {
13
        path: 'classContents',
14
        loadChildren: () => import('../openaireLibrary/dashboard/divhelpcontent/class-help-contents.module').then(m => m.ClassHelpContentsModule),
15
        pathMatch: 'full'
16
      },
17
      {
18
        path: 'classContents/edit',
19
        loadChildren: () => import('../openaireLibrary/dashboard/divhelpcontent/class-help-content-form.module').then(m => m.ClassHelpContentFormModule),
20
        pathMatch: 'full'
21
      },
22
      {
23
        path: 'helptexts',
24
        loadChildren: () => import('../openaireLibrary/dashboard/helpTexts/page-help-contents.module').then(m => m.PageHelpContentsModule),
25
        pathMatch: 'full'
26
      },
27
      {
28
        path: 'helptexts/edit',
29
        loadChildren: () => import('../openaireLibrary/dashboard/helpTexts/page-help-content-form.module').then(m => m.PageHelpContentFormModule),
30
        pathMatch: 'full'
31
      },
32
      {
33
        path: 'pages',
34
        loadChildren: () => import('../openaireLibrary/dashboard/page/pages.module').then(m => m.PagesModule),
35
        pathMatch: 'full'
36
      }
37
    ])
38
  ]
39
})
40
export class AdminToolsRoutingModule {
41
}
(1-1/2)