260312:0932 20260312:0930 n8n workflow, backend and frontend MOD.
Build and Deploy / deploy (push) Failing after 3m34s

This commit is contained in:
admin
2026-03-12 09:32:46 +07:00
parent 9c0978f3fa
commit 4288f89d8b
15 changed files with 1091 additions and 1010 deletions
+9 -1
View File
@@ -4,7 +4,7 @@ import Link from 'next/link';
import { usePathname } from 'next/navigation';
import { useState } from 'react';
import { cn } from '@/lib/utils';
import { Settings, Activity, Shield, FileStack, ChevronDown, ChevronRight } from 'lucide-react';
import { Settings, Activity, Shield, FileStack, ChevronDown, ChevronRight, Database } from 'lucide-react';
interface MenuItem {
href?: string;
@@ -54,6 +54,14 @@ export const menuItems: MenuItem[] = [
{ href: '/admin/monitoring/sessions', label: 'Active Sessions' },
],
},
{
label: 'Migration',
icon: Database,
children: [
{ href: '/admin/migration', label: 'Review Queue' },
{ href: '/admin/migration/errors', label: 'Error Logs' },
],
},
{ href: '/admin/settings', label: 'Settings', icon: Settings },
];