Skip to content

Commit

Permalink
feat: 문답 조회 시 이미지 여러장 대응
Browse files Browse the repository at this point in the history
  • Loading branch information
miseongk committed Oct 20, 2024
1 parent d1da7bf commit 246d9c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,7 @@ class BottleFacade(
photoStatus = getPhotoStatus(myLetter = myLetter, otherLetter = otherLetter),
myImageUrl = myProfile.imageUrl,
otherImageUrl = otherProfile.imageUrl,
otherImageUrls = otherProfile.imageUrls,
shouldAnswer = myLetter.isShareImage == null,
myAnswer = myLetter.isShareImage,
otherAnswer = otherLetter.isShareImage,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ data class Photo(
val photoStatus: PhotoStatus = PhotoStatus.NONE,
val myImageUrl: String? = null,
val otherImageUrl: String? = null,
val otherImageUrls: List<String> = emptyList(),
@Deprecated("iOS에서 status를 적용하면 삭제할 예정입니다")
val shouldAnswer: Boolean,
@Deprecated("iOS에서 status를 적용하면 삭제할 예정입니다")
Expand Down

0 comments on commit 246d9c9

Please sign in to comment.