fix and update

This commit is contained in:
lendry
2026-07-07 10:14:37 +03:00
parent 29306eb2ec
commit bd6cd0d798
22 changed files with 1544 additions and 53 deletions

View File

@@ -1,7 +1,7 @@
'use client';
import Link from 'next/link';
import { Bot, Boxes, Settings2, ShieldCheck, Users } from 'lucide-react';
import { Bot, Boxes, Download, Settings2, ShieldCheck, Users } from 'lucide-react';
import { cn } from '@/lib/utils';
import { PublicUser } from '@/lib/api';
@@ -36,6 +36,12 @@ const links = [
label: 'Настройки',
icon: Settings2,
permissions: ['canManageSettings'] as const
},
{
href: '/admin/releases',
label: 'Приложения',
icon: Download,
permissions: ['canManageSettings'] as const
}
];