Merge branch 'dev' into clients-pops

This commit is contained in:
Owen
2025-06-11 11:13:40 -04:00
149 changed files with 13888 additions and 5083 deletions

View File

@@ -14,7 +14,7 @@ import {
export const orgLangingNavItems: SidebarNavItem[] = [
{
title: "Overview",
title: "sidebarOverview",
href: "/{orgId}",
icon: <Home className="h-4 w-4" />
}
@@ -22,7 +22,7 @@ export const orgLangingNavItems: SidebarNavItem[] = [
export const rootNavItems: SidebarNavItem[] = [
{
title: "Home",
title: "sidebarHome",
href: "/",
icon: <Home className="h-4 w-4" />
}
@@ -30,54 +30,54 @@ export const rootNavItems: SidebarNavItem[] = [
export const orgNavItems: SidebarNavItem[] = [
{
title: "Sites",
title: "sidebarSites",
href: "/{orgId}/settings/sites",
icon: <Combine className="h-4 w-4" />
},
{
title: "Resources",
title: "sidebarResources",
href: "/{orgId}/settings/resources",
icon: <Waypoints className="h-4 w-4" />
},
{
title: "Clients",
title: "sidebarClients",
href: "/{orgId}/settings/clients",
icon: <Workflow className="h-4 w-4" />
},
{
title: "Access Control",
title: "sidebarAccessControl",
href: "/{orgId}/settings/access",
icon: <Users className="h-4 w-4" />,
autoExpand: true,
children: [
{
title: "Users",
title: "sidebarUsers",
href: "/{orgId}/settings/access/users",
children: [
{
title: "Invitations",
title: "sidebarInvitations",
href: "/{orgId}/settings/access/invitations"
}
]
},
{
title: "Roles",
title: "sidebarRoles",
href: "/{orgId}/settings/access/roles"
}
]
},
{
title: "Shareable Links",
title: "sidebarShareableLinks",
href: "/{orgId}/settings/share-links",
icon: <LinkIcon className="h-4 w-4" />
},
{
title: "API Keys",
title: "sidebarApiKeys",
href: "/{orgId}/settings/api-keys",
icon: <KeyRound className="h-4 w-4" />
},
{
title: "Settings",
title: "sidebarSettings",
href: "/{orgId}/settings/general",
icon: <Settings className="h-4 w-4" />
}
@@ -85,22 +85,22 @@ export const orgNavItems: SidebarNavItem[] = [
export const adminNavItems: SidebarNavItem[] = [
{
title: "All Users",
title: "sidebarAllUsers",
href: "/admin/users",
icon: <Users className="h-4 w-4" />
},
{
title: "API Keys",
title: "sidebarApiKeys",
href: "/admin/api-keys",
icon: <KeyRound className="h-4 w-4" />
},
{
title: "Identity Providers",
title: "sidebarIdentityProviders",
href: "/admin/idp",
icon: <Fingerprint className="h-4 w-4" />
},
{
title: "License",
title: "sidebarLicense",
href: "/admin/license",
icon: <TicketCheck className="h-4 w-4" />
}