Project

General

Profile

« Previous | Next » 

Revision 61408

[Monitor Dashboard | Trunk]: Update to angular 11

View differences:

admin-stakeholder-routing.module.ts
5 5
  imports: [RouterModule.forChild([
6 6
    {
7 7
      path: '',
8
      loadChildren: '../general/general.module#GeneralModule',
8
      loadChildren: () => import('../general/general.module').then(m => m.GeneralModule),
9 9
      data: {hasAdminMenu: true},
10 10
      pathMatch: 'full'
11 11
    },
12 12
    {
13 13
      path: 'users',
14
      loadChildren: '../users/users.module#UsersModule',
14
      loadChildren: () => import('../users/users.module').then(m => m.UsersModule),
15 15
      data: {hasAdminMenu: true},
16 16
      pathMatch: 'full'
17 17
    },
18 18
    {
19 19
      path: 'indicators',
20
      loadChildren: '../topic/topic.module#TopicModule',
20
      loadChildren: () => import('../topic/topic.module').then(m => m.TopicModule),
21 21
      pathMatch: 'full'
22 22
    },
23 23
    {
24 24
      path: 'indicators/:topic',
25
      loadChildren: '../topic/topic.module#TopicModule',
25
      loadChildren: () => import('../topic/topic.module').then(m => m.TopicModule),
26 26
      pathMatch: 'full'
27 27
    },
28 28
    {
29 29
      path: 'admin-tools',
30
      loadChildren: '../admin-tools/admin-tools-routing.module#AdminToolsRoutingModule',
30
      loadChildren: () => import('../admin-tools/admin-tools-routing.module').then(m => m.AdminToolsRoutingModule),
31 31
      data: {
32 32
        hasAdminMenu: true,
33 33
        param: 'stakeholder'

Also available in: Unified diff