19 lines
410 B
TypeScript
19 lines
410 B
TypeScript
import { PrismaClient } from '../../../generated/prisma/client';
|
|
|
|
const prisma = new PrismaClient();
|
|
|
|
export async function GET() {
|
|
const notices = await prisma.noticeBoard.findMany({
|
|
where: {
|
|
isDeleted: false,
|
|
},
|
|
select: {
|
|
id: true,
|
|
title: true,
|
|
pubDate: true,
|
|
tag: true,
|
|
// 필요한 다른 필드들도 추가
|
|
},
|
|
});
|
|
return Response.json(notices);
|
|
} |