From cefd3e0bf89072f65cff450a3b450a662674456d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hartmut=20N=C3=B6renberg?= Date: Mon, 23 Mar 2026 10:02:50 +0100 Subject: [PATCH] refactor: move Dispo Import + Skill Import into ACN-Orga submenu Both import pages are now grouped under the ACN-Orga collapsible section in the admin sidebar instead of being separate top-level items. ACN-Orga submenu now contains: - Countries - Org Units - Util. Categories - Mgmt Levels - Dispo Import (moved) - Skill Import (moved) Co-Authored-By: claude-flow --- apps/web/src/components/layout/AppShell.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/components/layout/AppShell.tsx b/apps/web/src/components/layout/AppShell.tsx index b63398f..c874061 100644 --- a/apps/web/src/components/layout/AppShell.tsx +++ b/apps/web/src/components/layout/AppShell.tsx @@ -182,16 +182,16 @@ const adminNavEntries: AdminEntry[] = [ { href: "/admin/org-units", label: "Org Units", icon: }, { href: "/admin/utilization-categories", label: "Util. Categories", icon: }, { href: "/admin/management-levels", label: "Mgmt Levels", icon: }, + { href: "/admin/dispo-imports", label: "Dispo Import", icon: }, + { href: "/admin/skill-import", label: "Skill Import", icon: }, ], }, { href: "/admin/calculation-rules", label: "Calc. Rules", icon: }, { href: "/admin/users", label: "Users", icon: }, { href: "/admin/system-roles", label: "System Roles", icon: }, { href: "/admin/settings", label: "Settings", icon: }, - { href: "/admin/skill-import", label: "Skill Import", icon: }, { href: "/admin/notifications", label: "Broadcasts", icon: }, { href: "/admin/webhooks", label: "Webhooks", icon: }, - { href: "/admin/dispo-imports", label: "Dispo Import", icon: }, { href: "/admin/activity-log", label: "Activity Log", icon: }, ];