test #210

Merged
klaus merged 7 commits from test into main 2024-09-06 19:00:39 +00:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit 307eea3ea2 - Show all commits

View File

@ -4,6 +4,7 @@ import com.querydsl.core.annotations.QueryProjection
data class GetMemberProfileResponse @QueryProjection constructor(
val memberId: Long,
val nickname: String,
val profileImageUrl: String,
val isBlocked: Boolean
)

View File

@ -428,6 +428,7 @@ class MemberQueryRepositoryImpl(
.select(
QGetMemberProfileResponse(
member.id,
member.nickname,
member.profileImage.prepend("/").prepend(cloudFrontHost),
blockMember.id.isNotNull
)