From ba9fd913a4e0792ad69b063c6388cc12fb1fe15a Mon Sep 17 00:00:00 2001 From: OZGCloud <ozgcloud@mgm-tp.com> Date: Wed, 2 Oct 2024 17:12:52 +0200 Subject: [PATCH] OZG-6731 show organisationseinheiten for testing --- alfa-client/apps/admin/src/app/app.component.html | 6 +++--- alfa-client/apps/admin/src/app/app.routes.ts | 11 ++++++----- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/alfa-client/apps/admin/src/app/app.component.html b/alfa-client/apps/admin/src/app/app.component.html index 69e4b50b55..77e7b35804 100644 --- a/alfa-client/apps/admin/src/app/app.component.html +++ b/alfa-client/apps/admin/src/app/app.component.html @@ -18,9 +18,9 @@ <div class="flex h-screen w-full justify-center overflow-y-auto"> <ods-navbar data-test-id="navigation"> <ng-container *ngIf="apiRoot | hasLink: ApiRootLinkRel.CONFIGURATION"> - <!-- <ods-nav-item caption="Organisationseinheiten" to="/organisationseinheiten">--> - <!-- <ods-orga-unit-icon icon />--> - <!-- </ods-nav-item>--> + <ods-nav-item caption="Organisationseinheiten" to="/organisationseinheiten"> + <ods-orga-unit-icon icon /> + </ods-nav-item> <ods-nav-item caption="Benutzer & Rollen" to="/benutzer_und_rollen"> <ods-users-icon class="stroke-text" icon /> </ods-nav-item> diff --git a/alfa-client/apps/admin/src/app/app.routes.ts b/alfa-client/apps/admin/src/app/app.routes.ts index 9594ce3ee2..e880d84e0c 100644 --- a/alfa-client/apps/admin/src/app/app.routes.ts +++ b/alfa-client/apps/admin/src/app/app.routes.ts @@ -1,4 +1,5 @@ import { Route } from '@angular/router'; +import { OrganisationseinheitPageComponent } from '../pages/organisationseinheit/organisationseinheit-page/organisationseinheit-page.component'; import { PostfachPageComponent } from '../pages/postfach/postfach-page/postfach-page.component'; import { UserRolesPageComponent } from '../pages/users-roles/user-roles-page/user-roles-page.component'; @@ -18,9 +19,9 @@ export const appRoutes: Route[] = [ component: UserRolesPageComponent, title: 'Admin | Benutzer & Rollen', }, - // { - // path: 'organisationseinheiten', - // component: OrganisationseinheitPageComponent, - // title: 'Admin | Organisationseinheiten', - // }, + { + path: 'organisationseinheiten', + component: OrganisationseinheitPageComponent, + title: 'Admin | Organisationseinheiten', + }, ]; -- GitLab