a3fbcaf
67ea2ab
b857757
a3fbcaf
67ea2ab |
|
import prisma from "@/_utils/prisma";
export async function GET() {
const images = await prisma.logo.findMany({
select: {
id: true,
},
take: 24,
orderBy: {
id: "desc",
},
});
return Response.json(images.map((image) => image.id));
}
|