[DURACOM-191] change routing for item-page

This commit is contained in:
Andrea Barbasso
2024-01-10 14:47:33 +01:00
parent 4b84c35417
commit 5ade030259
7 changed files with 327 additions and 336 deletions

View File

@@ -110,14 +110,14 @@ import { ThemedPageErrorComponent } from './page-error/themed-page-error.compone
},
{
path: ITEM_MODULE_PATH,
loadChildren: () => import('./item-page/item-page.module')
.then((m) => m.ItemPageModule),
loadChildren: () => import('./item-page/item-page-routes')
.then((m) => m.ROUTES),
canActivate: [EndUserAgreementCurrentUserGuard]
},
{
path: 'entities/:entity-type',
loadChildren: () => import('./item-page/item-page.module')
.then((m) => m.ItemPageModule),
loadChildren: () => import('./item-page/item-page-routes')
.then((m) => m.ROUTES),
canActivate: [EndUserAgreementCurrentUserGuard]
},
{