import { NextRequest, NextResponse } from "next/server"; import { getSharedTransactions } 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 transactions = await getSharedTransactions(user.id); return NextResponse.json(transactions); }