Compare commits

...

2 Commits

Author SHA1 Message Date
klaus b735e861d0 Merge pull request '콘텐츠 댓글 푸시 대상자 조회' (#245) from test into main
Reviewed-on: #245
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

View File

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