join #13

Merged
amaliadwiy merged 56 commits from join into staging 2026-02-09 11:12:29 +08:00
49 changed files with 721 additions and 259 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
} }
} }
} }