12 lines
429 B
TypeScript
12 lines
429 B
TypeScript
import { NextRequest, NextResponse } from "next/server";
|
|
import { getParticipantBalances } from "@/lib/queries";
|
|
import { getCurrentUser } from "@/lib/auth";
|
|
|
|
export async function GET(req: NextRequest) {
|
|
const user = await getCurrentUser(req);
|
|
if (!user) return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
|
|
|
|
const balances = await getParticipantBalances(user.id);
|
|
return NextResponse.json(balances);
|
|
}
|