31 lines
857 B
TypeScript
31 lines
857 B
TypeScript
import { NextRequest, NextResponse } from "next/server";
|
|
import { db } from "@/lib/db";
|
|
import { getApiUser } from "@/lib/apiAuth";
|
|
export async function GET(req: NextRequest) {
|
|
const matches = await db.match.findMany({
|
|
include: {
|
|
homeTeam: true,
|
|
awayTeam: true,
|
|
gameweek: true,
|
|
},
|
|
orderBy: { matchDate: "asc" },
|
|
});
|
|
return NextResponse.json(matches);
|
|
}
|
|
|
|
export async function POST(req: NextRequest) {
|
|
const apiUser = await getApiUser(req);
|
|
if (!apiUser || apiUser.role !== "ADMIN")
|
|
return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
|
|
|
|
const body = await req.json();
|
|
const match = await db.match.create({
|
|
data: {
|
|
...body,
|
|
matchDate: new Date(body.matchDate),
|
|
},
|
|
include: { homeTeam: true, awayTeam: true },
|
|
});
|
|
return NextResponse.json(match, { status: 201 });
|
|
}
|