Files
hosting-files/src/app/api/photos/route.ts
T
orohi 8bb436ea4f first commit
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-06 14:59:02 +03:00

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 });
}
}