1
0
forked from baron/baron-sso

feat: 테넌트 그룹(Tenant Group) 기능 구현 #239

This commit is contained in:
2026-02-11 10:19:47 +09:00
parent 655a32fd97
commit 1548e60361
14 changed files with 659 additions and 21 deletions

View File

@@ -1,4 +1,5 @@
import {
<<<<<<< HEAD
BadgeCheck,
Building2,
Key,
@@ -9,6 +10,19 @@ import {
ShieldHalf,
Sun,
Users,
=======
BadgeCheck,
Building2,
Key,
KeyRound,
LayoutDashboard,
LayoutGrid,
Moon,
NotebookTabs,
ShieldHalf,
Sun,
Users,
>>>>>>> d7d2e16 (feat: 테넌트 (Tenant Group) #239)
} from "lucide-react";
import { useEffect, useState } from "react";
import { NavLink, Outlet } from "react-router-dom";
@@ -16,6 +30,7 @@ import { t } from "../../lib/i18n";
import RoleSwitcher from "./RoleSwitcher";
const navItems = [
<<<<<<< HEAD
{ label: "ui.admin.nav.overview", to: "/", icon: LayoutDashboard },
{
label: "ui.admin.nav.tenant_dashboard",
@@ -27,6 +42,16 @@ const navItems = [
{ label: "ui.admin.nav.api_keys", to: "/api-keys", icon: Key },
{ label: "ui.admin.nav.audit_logs", to: "/audit-logs", icon: NotebookTabs },
{ label: "ui.admin.nav.auth_guard", to: "/auth", icon: KeyRound },
=======
{ label: "Overview", to: "/", icon: LayoutDashboard },
{ label: "Tenant Dashboard", to: "/dashboard", icon: ShieldHalf },
{ label: "Tenant Groups", to: "/tenant-groups", icon: LayoutGrid },
{ label: "Tenants", to: "/tenants", icon: Building2 },
{ label: "Users", to: "/users", icon: Users },
{ label: "API Keys (M2M)", to: "/api-keys", icon: Key },
{ label: "Audit Logs", to: "/audit-logs", icon: NotebookTabs },
{ label: "Auth Guard", to: "/auth", icon: KeyRound },
>>>>>>> d7d2e16 (feat: 테넌트 (Tenant Group) #239)
];
function AppLayout() {