Skip to content

Commit

Permalink
feat: 마지막 보틀 활성화 필드 임시 제거 (#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
injoon2019 authored Aug 31, 2024
1 parent a0b00f5 commit 00dd3a0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ class BottleFacade(
userImageUrl = bottle.sourceUser.userProfile?.imageUrl,
expiredAt = bottle.expiredAt,
//lastActivatedAt = getLastActivatedAtInKorean(basedAt = bottle.sourceUser.lastActivatedAt, now = LocalDateTime.now())
lastActivatedAt = null,
)
}

Expand Down Expand Up @@ -206,7 +205,6 @@ class BottleFacade(
keyword = otherUser.userProfile?.profileSelect?.keyword,
userImageUrl = otherUser.userProfile?.imageUrl,
//lastActivatedAt = getLastActivatedAtInKorean(basedAt = otherUser.lastActivatedAt, now = LocalDateTime.now()),
lastActivatedAt = null,
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ data class BottleDto(
val mbti: String?,
val keyword: List<String>?,
val userImageUrl: String?,
val lastActivatedAt: String?,
//val lastActivatedAt: String?,

@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
val expiredAt: LocalDateTime
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ data class PingPongBottleDto(
val mbti: String?,
val keyword: List<String>?,
val userImageUrl: String?,
val lastActivatedAt: String?,
// val lastActivatedAt: String?,
)

0 comments on commit 00dd3a0

Please sign in to comment.