크리에이터 커뮤니티 #102

Merged
klaus merged 18 commits from test into main 2023-12-21 15:10:56 +00:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit e090a2fe7a - Show all commits

View File

@ -159,6 +159,7 @@ class CreatorCommunityService(
}
GetCommunityPostListResponse(
postId = it.id!!,
creatorNickname = it.member!!.nickname,
creatorProfileUrl = if (it.member!!.profileImage != null) {
"$imageHost/${it.member!!.profileImage}"

View File

@ -4,6 +4,7 @@ import com.querydsl.core.annotations.QueryProjection
import kr.co.vividnext.sodalive.explorer.profile.creatorCommunity.comment.GetCommunityPostCommentListItem
data class GetCommunityPostListResponse @QueryProjection constructor(
val postId: Long,
val creatorNickname: String,
val creatorProfileUrl: String,
val imageUrl: String?,