refactor(api): update all API routes to use new player field names

This commit is contained in:
2026-04-03 21:03:51 -07:00
parent a1329f077f
commit c00f26919b
11 changed files with 103 additions and 591 deletions
+4 -4
View File
@@ -132,10 +132,10 @@ export async function POST(request: Request) {
data: {
eventId: parseInt(eventId),
playedAt: new Date(),
team1P1Id: players[0].id,
team1P2Id: players[1].id,
team2P1Id: players[2].id,
team2P2Id: players[3].id,
player1P1Id: players[0].id,
player1P2Id: players[1].id,
player2P1Id: players[2].id,
player2P2Id: players[3].id,
team1Score,
team2Score,
status: "completed",