Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | export const dynamic = "force-dynamic"; import { NextRequest, NextResponse } from 'next/server'; import { Session } from "next-auth"; import { prisma } from "@/lib/prisma"; import { withAdmin, withErrorHandling, successResponse, ApiError, ApiSuccessResponse, ApiErrorResponse } from "@/lib/api"; import { RouteContext } from "@/lib/api/middleware"; import type { AuthenticatedUser } from '@/lib/api/middleware/types'; async function handlePost( request: NextRequest, _context: RouteContext | undefined, _session: Session, user: AuthenticatedUser ): Promise<NextResponse<ApiSuccessResponse<unknown> | ApiErrorResponse>> { const body = await request.json(); const { fingerprint } = body; if (!fingerprint) { throw ApiError.badRequest("Fingerprint required"); } // Update error statistic to resolved await prisma.errorStatistic.update({ where: { fingerprint }, data: { status: 'resolved', resolvedAt: new Date(), resolvedBy: user.id}}); return successResponse({ success: true }); } export const POST = withErrorHandling(withAdmin(handlePost)); |