Skip to content

Commit

Permalink
refactor: 릴레이 질문 목록 조회 시 종료 상태만 조회하도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
nahyeon99 committed Aug 24, 2024
1 parent 02ff102 commit 0eee09a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ public MeetingAnswerListResponse findAllByOtherMeetingMemberId(Long meetingMembe
.join(meetingAnswer).on(meetingQuestion.eq(meetingAnswer.meetingQuestion)).fetchJoin()
.join(meetingMember).on(meetingMember.eq(meetingAnswer.meetingMember)).fetchJoin()
.where(meetingMember.id.eq(meetingMemberId),
inactiveCond(),
meetingAnswer.isHidden.isFalse())
.orderBy(meetingQuestion.createdAt.asc())
.fetch();
Expand Down

0 comments on commit 0eee09a

Please sign in to comment.