STRAPS_LOCALHOST/app/api/users/[id]/route.ts

27 lines
682 B
TypeScript

import { NextResponse } from 'next/server';
import { prisma } from '@/lib/prisma';
export async function GET(
request: Request,
props: { params: Promise<{ id: string }> }
) {
try {
const params = await props.params;
const id = params.id; // String ID
const user = await prisma.users.findUnique({
where: { id: id },
include: { coach: true }
});
if (!user) {
return NextResponse.json({ error: 'User not found' }, { status: 404 });
}
return NextResponse.json(user);
} catch (error) {
return NextResponse.json({ error: 'Internal Error' }, { status: 500 });
}
}