Files

8 lines
190 B
TypeScript

import { NextResponse } from "next/server";
import { listTaskEvents } from "@/lib/tasks";
export async function GET() {
return NextResponse.json(await listTaskEvents(undefined, 100));
}