import { NextRequest, NextResponse } from 'next/server'; import { withAuth, withPermission } from '@/lib/api/helpers'; import { getKpis } from '@/lib/services/dashboard.service'; export const GET = withAuth( withPermission('reports', 'view_dashboard', async (req: NextRequest, ctx) => { const result = await getKpis(ctx.portId); return NextResponse.json(result); }), );