Compare commits

...

2 Commits

Author SHA1 Message Date
klaus b735e861d0 Merge pull request '콘텐츠 댓글 푸시 대상자 조회' () from test into main
Reviewed-on: 
2024-12-02 15:06:49 +00:00
Klaus c7513e9045 콘텐츠 댓글 푸시 대상자 조회
- audioContentComment 조회 대상에 추가
2024-12-03 00:01:17 +09:00
1 changed files with 3 additions and 2 deletions
src/main/kotlin/kr/co/vividnext/sodalive/content/comment

View File

@ -221,8 +221,9 @@ class AudioContentCommentQueryRepositoryImpl(
member.container
)
)
.from(audioContent)
.innerJoin(audioContent.member, member)
.from(audioContentComment)
.innerJoin(audioContentComment.audioContent, audioContent)
.innerJoin(audioContentComment.member, member)
.where(where)
.fetch()
}