test #326

Merged
klaus merged 4 commits from test into main 2025-06-13 11:37:26 +00:00
2 changed files with 4 additions and 1 deletions
Showing only changes of commit f13c221fd6 - Show all commits

View File

@ -81,6 +81,7 @@ class CreatorCommunityCommentQueryRepositoryImpl(
creatorCommunityComment.member.nickname, creatorCommunityComment.member.nickname,
creatorCommunityComment.member.profileImage.prepend("/").prepend(imageHost), creatorCommunityComment.member.profileImage.prepend("/").prepend(imageHost),
creatorCommunityComment.comment, creatorCommunityComment.comment,
creatorCommunityComment.isSecret,
formattedDate, formattedDate,
Expressions.constant(0) Expressions.constant(0)
) )
@ -156,8 +157,9 @@ class CreatorCommunityCommentQueryRepositoryImpl(
creatorCommunityComment.id, creatorCommunityComment.id,
creatorCommunityComment.member.id, creatorCommunityComment.member.id,
creatorCommunityComment.member.nickname, creatorCommunityComment.member.nickname,
creatorCommunityComment.member.profileImage.prepend(imageHost), creatorCommunityComment.member.profileImage.prepend("/").prepend(imageHost),
creatorCommunityComment.comment, creatorCommunityComment.comment,
creatorCommunityComment.isSecret,
formattedDate, formattedDate,
Expressions.constant(0) Expressions.constant(0)
) )

View File

@ -13,6 +13,7 @@ data class GetCommunityPostCommentListItem @QueryProjection constructor(
val nickname: String, val nickname: String,
val profileUrl: String, val profileUrl: String,
val comment: String, val comment: String,
val isSecret: Boolean,
val date: String, val date: String,
var replyCount: Int var replyCount: Int
) )