Skip to content

Commit

Permalink
Merge pull request #498 from ldhbenecia/feature/getMogaco
Browse files Browse the repository at this point in the history
[Feat] 내가 참여한 모각코 조회 시 삭제된 모각코 제외 반환
  • Loading branch information
ldhbenecia authored Dec 18, 2023
2 parents 01cb06f + 29b5bb8 commit 281c479
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/backend/src/mogaco-boards/mogaco-boards.repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,9 @@ export class MogacoRepository {
const mogacos = await this.prisma.participant.findMany({
where: {
userId: member.id,
mogaco: {
deletedAt: null,
},
},
include: {
mogaco: {
Expand Down

0 comments on commit 281c479

Please sign in to comment.