8bb436ea4f
Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
397 B
TypeScript
16 lines
397 B
TypeScript
import { NextResponse } from "next/server";
|
|
import { prisma } from "@/lib/prisma";
|
|
|
|
export async function GET() {
|
|
try {
|
|
const photos = await prisma.photo.findMany({
|
|
orderBy: { createdAt: "desc" },
|
|
take: 50,
|
|
});
|
|
return NextResponse.json(photos);
|
|
} catch (error) {
|
|
console.error("Photos fetch error:", error);
|
|
return NextResponse.json([], { status: 200 });
|
|
}
|
|
}
|