Project

General

Profile

« Previous | Next » 

Revision 61408

[Monitor Dashboard | Trunk]: Update to angular 11

View differences:

admin-tools-routing.module.ts
6 6
    RouterModule.forChild([
7 7
      {
8 8
        path: 'entities',
9
        loadChildren: '../openaireLibrary/dashboard/entity/entities.module#EntitiesModule',
9
        loadChildren: () => import('../openaireLibrary/dashboard/entity/entities.module').then(m => m.EntitiesModule),
10 10
        pathMatch: 'full'
11 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 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
      {
27 23
        path: 'helptexts',
28
        loadChildren: '../openaireLibrary/dashboard/helpTexts/page-help-contents.module#PageHelpContentsModule',
24
        loadChildren: () => import('../openaireLibrary/dashboard/helpTexts/page-help-contents.module').then(m => m.PageHelpContentsModule),
29 25
        pathMatch: 'full'
30 26
      },
31 27
      {
32 28
        path: 'helptexts/edit',
33
        loadChildren: '../openaireLibrary/dashboard/helpTexts/page-help-content-form.module#PageHelpContentFormModule',
29
        loadChildren: () => import('../openaireLibrary/dashboard/helpTexts/page-help-content-form.module').then(m => m.PageHelpContentFormModule),
34 30
        pathMatch: 'full'
35 31
      },
36 32
      {
37 33
        path: 'pages',
38
        loadChildren: '../openaireLibrary/dashboard/page/pages.module#PagesModule',
34
        loadChildren: () => import('../openaireLibrary/dashboard/page/pages.module').then(m => m.PagesModule),
39 35
        pathMatch: 'full'
40 36
      }
41 37
    ])

Also available in: Unified diff