라이브 예약 반환 값 - beginDateTimeUtc 추가 #382

Merged
klaus merged 1 commits from test into main 2026-01-21 10:08:55 +00:00
2 changed files with 3 additions and 0 deletions

View File

@@ -83,6 +83,8 @@ class LiveReservationService(
nickname = room.member!!.nickname,
title = room.title,
beginDateString = beginDateTime.format(DateTimeFormatter.ofPattern(reservationDateFormat)),
beginDateTimeUtc = room.beginDateTime
.format(DateTimeFormatter.ISO_LOCAL_DATE_TIME),
price = if (room.price > 0) {
val priceTemplate = messageSource.getMessage("live.room.can_title", langContext.lang).orEmpty()
String.format(priceTemplate, room.price)

View File

@@ -5,6 +5,7 @@ data class MakeLiveReservationResponse(
val nickname: String,
val title: String,
val beginDateString: String,
val beginDateTimeUtc: String,
val price: String,
val haveCan: Int,
val useCan: Int,