2021-01-26 18:01:22 +01:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {RouterModule} from '@angular/router';
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
RouterModule.forChild([
|
|
|
|
{
|
|
|
|
path: 'entities',
|
2021-07-14 18:02:04 +02:00
|
|
|
loadChildren: () => import('../openaireLibrary/dashboard/entity/entities.module').then(m => m.EntitiesModule),
|
|
|
|
pathMatch: 'full'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: 'classContents',
|
|
|
|
loadChildren: () => import('../openaireLibrary/dashboard/divhelpcontent/class-help-contents.module').then(m => m.ClassHelpContentsModule),
|
|
|
|
pathMatch: 'full'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: 'classContents/edit',
|
|
|
|
loadChildren: () => import('../openaireLibrary/dashboard/divhelpcontent/class-help-content-form.module').then(m => m.ClassHelpContentFormModule),
|
2021-01-26 18:01:22 +01:00
|
|
|
pathMatch: 'full'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: 'helptexts',
|
2021-07-14 18:02:04 +02:00
|
|
|
loadChildren: () => import('../openaireLibrary/dashboard/helpTexts/page-help-contents.module').then(m => m.PageHelpContentsModule),
|
2021-01-26 18:01:22 +01:00
|
|
|
pathMatch: 'full'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: 'helptexts/edit',
|
2021-07-14 18:02:04 +02:00
|
|
|
loadChildren: () => import('../openaireLibrary/dashboard/helpTexts/page-help-content-form.module').then(m => m.PageHelpContentFormModule),
|
2021-01-26 18:01:22 +01:00
|
|
|
pathMatch: 'full'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: 'pages',
|
2021-07-14 18:02:04 +02:00
|
|
|
loadChildren: () => import('../openaireLibrary/dashboard/page/pages.module').then(m => m.PagesModule),
|
2021-01-26 18:01:22 +01:00
|
|
|
pathMatch: 'full'
|
2021-03-02 09:43:19 +01:00
|
|
|
}
|
2021-01-26 18:01:22 +01:00
|
|
|
])
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class AdminToolsRoutingModule {
|
|
|
|
}
|