[CST-7757] Subscriptions porting (wip)

This commit is contained in:
Rezart Vata
2021-08-16 18:42:58 +02:00
committed by Davide Negretti
parent 4915f10b0e
commit b775cd5ab0
39 changed files with 6400 additions and 8 deletions

View File

@@ -230,6 +230,12 @@ import { ThemedPageErrorComponent } from './page-error/themed-page-error.compone
loadChildren: () => import('./access-control/access-control.module').then((m) => m.AccessControlModule),
canActivate: [GroupAdministratorGuard],
},
{
path: 'subscriptions',
loadChildren: () => import('./subscriptions-page/subscriptions-page-routing.module')
.then((m) => m.SubscriptionsPageRoutingModule),
canActivate: [AuthenticatedGuard]
},
{ path: '**', pathMatch: 'full', component: ThemedPageNotFoundComponent },
]
}