feat: add superadmin tenant module

This commit is contained in:
2026-06-16 22:30:29 +05:30
parent 6c97f89b30
commit 6f4399a048
18 changed files with 1146 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ import {
Users,
Building2,
BadgeIndianRupee,
Globe,
} from 'lucide-react';
import type { ComponentType, SVGProps } from 'react';
@@ -77,6 +78,12 @@ export const menuItems: MenuItem[] = [
icon: BadgeIndianRupee,
permission: PERMISSIONS.PLAN.READ,
},
{
title: 'Tenants',
path: ROUTES.TENANTS,
icon: Globe,
permission: PERMISSIONS.TENANT.READ,
},
],
},
];