diff --git a/apps/red-ui/src/app/app-routing.module.ts b/apps/red-ui/src/app/app-routing.module.ts index 676a591e8..aac15bf42 100644 --- a/apps/red-ui/src/app/app-routing.module.ts +++ b/apps/red-ui/src/app/app-routing.module.ts @@ -63,8 +63,14 @@ const routes = [ loadChildren: () => import('./modules/projects/projects.module').then((m) => m.ProjectsModule) }, { - path: 'downloads', - component: DownloadsListScreenComponent, + path: 'ui/downloads', + component: BaseScreenComponent, + children: [ + { + path: '', + component: DownloadsListScreenComponent + } + ], canActivate: [CompositeRouteGuard], data: { routeGuards: [AuthGuard, RedRoleGuard, AppStateGuard]