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: '../../openaireLibrary/dashboard/entity/entities.module#EntitiesModule',
10
        pathMatch: 'full'
11
      },
12
      {
13
        path: 'classContents',
14
        loadChildren: '../../openaireLibrary/dashboard/divhelpcontent/div-help-contents.module#DivHelpContentsModule'
15
      },
16
      {
17
        path: 'classContents/new',
18
        loadChildren: '../../openaireLibrary/dashboard/divhelpcontent/new-div-help-content.module#NewDivHelpContentModule',
19
        pathMatch: 'full'
20
      },
21
      {
22
        path: 'classContents/edit',
23
        loadChildren: '../../openaireLibrary/dashboard/divhelpcontent/edit-div-help-content.module#EditDivHelpContentModule',
24
        pathMatch: 'full'
25
      },
26
      {
27
        path: 'helptexts',
28
        loadChildren: '../../openaireLibrary/dashboard/helpTexts/page-help-contents.module#PageHelpContentsModule',
29
        pathMatch: 'full'
30
      },
31
      {
32
        path: 'helptexts/new',
33
        loadChildren: '../../openaireLibrary/dashboard/helpTexts/new-page-help-content.module#NewPageHelpContentModule',
34
        pathMatch: 'full'
35
      },
36
      {
37
        path: 'helptexts/edit',
38
        loadChildren: '../../openaireLibrary/dashboard/helpTexts/edit-page-help-content.module#EditPageHelpContentModule',
39
        pathMatch: 'full'
40
      },
41
      {
42
        path: 'pages',
43
        loadChildren: '../../openaireLibrary/dashboard/page/pages.module#PagesModule',
44
        pathMatch: 'full'
45
      },
46
      {
47
        path: 'pageContents',
48
        loadChildren: '../../openaireLibrary/dashboard/helpTexts/page-help-contents.module#PageHelpContentsModule',
49
        pathMatch: 'full'
50
      },
51
      {
52
        path: 'pageContents/new',
53
        loadChildren: '../../openaireLibrary/dashboard/helpTexts/new-page-help-content.module#NewPageHelpContentModule',
54
        pathMatch: 'full'
55
      },
56
      {
57
        path: 'pageContents/edit',
58
        loadChildren: '../../openaireLibrary/dashboard/helpTexts/edit-page-help-content.module#EditPageHelpContentModule',
59
        pathMatch: 'full'
60
      }
61
    ])
62
  ]
63
})
64
export class AdminToolsRoutingModule {
65
}
(1-1/2)