amalia/16-okt-25 #1

Merged
amaliadwiy merged 25 commits from amalia/16-okt-25 into join 2025-10-27 11:00:00 +08:00
22 changed files with 471 additions and 104 deletions
Showing only changes of commit bd1758ce32 - Show all commits

View File

@@ -74,6 +74,9 @@ export async function GET(request: Request) {
DiscussionComment: { DiscussionComment: {
select: { select: {
id: true, id: true,
},
where:{
isActive:true
} }
} }
} }

View File

@@ -60,6 +60,9 @@ export async function GET(request: Request, context: { params: { id: string } })
img: true img: true
} }
} }
},
where: {
isActive:true
} }
}, },
} }

View File

@@ -64,6 +64,9 @@ export async function GET(request: Request) {
DivisionDisscussionComment: { DivisionDisscussionComment: {
select: { select: {
id: true, id: true,
},
where:{
isActive:true
} }
} }
} }