diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index cde88005f..95e085def 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -2,6 +2,8 @@ import { provideStates } from '@ngxs/store'; import { Routes } from '@angular/router'; +import { RegistryOverviewState } from '@osf/features/registry/store/registry-overview'; + import { MyProfileResourceFiltersOptionsState } from './features/my-profile/components/filters/store'; import { MyProfileResourceFiltersState } from './features/my-profile/components/my-profile-resource-filters/store'; import { MyProfileState } from './features/my-profile/store'; @@ -153,6 +155,11 @@ export const routes: Routes = [ path: 'registries', loadChildren: () => import('./features/registries/registries.routes').then((mod) => mod.registriesRoutes), }, + { + path: 'registries/my-registrations/:registrationId', + loadChildren: () => import('./features/registry/registry.routes').then((mod) => mod.registryRoutes), + providers: [provideStates([RegistryOverviewState])], + }, { path: '**', loadComponent: () => diff --git a/src/app/core/components/nav-menu/nav-menu.component.html b/src/app/core/components/nav-menu/nav-menu.component.html index 8a0cb1716..b6f8fd12c 100644 --- a/src/app/core/components/nav-menu/nav-menu.component.html +++ b/src/app/core/components/nav-menu/nav-menu.component.html @@ -1,53 +1,80 @@