Add Telegram Users admin page and sidebar link

Introduces a new admin page for managing Telegram users, displaying user statistics and allowing user actions. Updates the admin sidebar to include a link to the new Telegram Users page. Also updates git-info.json with the latest build metadata.
This commit is contained in:
g
2025-11-28 20:04:57 +00:00
parent 3548cc3f2b
commit 1001911691
3 changed files with 227 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
import { Home, Shield, Users, Ban, UserPlus, Package, BarChart3 } from "lucide-react"
import { Home, Shield, Users, Ban, UserPlus, Package, BarChart3, UserCircle } from "lucide-react"
export const adminSidebarConfig = [
{
@@ -12,6 +12,7 @@ export const adminSidebarConfig = [
title: "User Management",
items: [
{ name: "All Vendors", href: "/dashboard/admin/vendors", icon: Users },
{ name: "Telegram Users", href: "/dashboard/admin/users", icon: UserCircle },
{ name: "Invite Vendor", href: "/dashboard/admin/invite", icon: UserPlus },
{ name: "Ban Users", href: "/dashboard/admin/ban", icon: Ban },
],