From f278497526ab44cb622368bcfa1158f6ecd8e9a1 Mon Sep 17 00:00:00 2001 From: Klaus Date: Fri, 14 Nov 2025 05:37:24 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix(character):=20isNew=20->=20new=EB=A1=9C?= =?UTF-8?q?=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sodalive/chat/character/dto/CharacterHomeResponse.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/dto/CharacterHomeResponse.kt b/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/dto/CharacterHomeResponse.kt index 824be47..d0f22b8 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/dto/CharacterHomeResponse.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/dto/CharacterHomeResponse.kt @@ -22,7 +22,7 @@ data class Character( @JsonProperty("name") val name: String, @JsonProperty("description") val description: String, @JsonProperty("imageUrl") val imageUrl: String, - @JsonProperty("isNew") val isNew: Boolean + @JsonProperty("isNew") val new: Boolean ) data class RecentCharacter( From 04e7c904077009e247b26b6123859a102ab4a41f Mon Sep 17 00:00:00 2001 From: Klaus Date: Fri, 14 Nov 2025 05:39:56 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix(character):=20isNew=20->=20new=EB=A1=9C?= =?UTF-8?q?=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../chat/character/controller/ChatCharacterController.kt | 2 +- .../chat/character/service/ChatCharacterService.kt | 8 ++++---- .../chat/original/controller/OriginalWorkController.kt | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/controller/ChatCharacterController.kt b/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/controller/ChatCharacterController.kt index 055f2f3..a27bdc8 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/controller/ChatCharacterController.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/controller/ChatCharacterController.kt @@ -93,7 +93,7 @@ class ChatCharacterController( name = it.name, description = it.description, imageUrl = "$imageHost/${it.imagePath ?: "profile/default-profile.png"}", - isNew = false + new = false ) } ) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/service/ChatCharacterService.kt b/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/service/ChatCharacterService.kt index 79eeacb..faec7b0 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/service/ChatCharacterService.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/service/ChatCharacterService.kt @@ -66,7 +66,7 @@ class ChatCharacterService( name = it.name, description = it.description, imageUrl = "$imageHost/${it.imagePath ?: "profile/default-profile.png"}", - isNew = recentSet.contains(it.id) + new = recentSet.contains(it.id) ) } } @@ -102,7 +102,7 @@ class ChatCharacterService( name = it.name, description = it.description, imageUrl = "$imageHost/${it.imagePath ?: "profile/default-profile.png"}", - isNew = recentSet.contains(it.id) + new = recentSet.contains(it.id) ) } } @@ -158,7 +158,7 @@ class ChatCharacterService( name = it.name, description = it.description, imageUrl = "$imageHost/${it.imagePath ?: "profile/default-profile.png"}", - isNew = recentSet.contains(it.id) + new = recentSet.contains(it.id) ) } return RecentCharactersResponse( @@ -189,7 +189,7 @@ class ChatCharacterService( name = it.name, description = it.description, imageUrl = "$imageHost/${it.imagePath ?: "profile/default-profile.png"}", - isNew = recentSet.contains(it.id) + new = recentSet.contains(it.id) ) } diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/chat/original/controller/OriginalWorkController.kt b/src/main/kotlin/kr/co/vividnext/sodalive/chat/original/controller/OriginalWorkController.kt index fab48a6..eb8cbfb 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/chat/original/controller/OriginalWorkController.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/chat/original/controller/OriginalWorkController.kt @@ -94,7 +94,7 @@ class OriginalWorkController( name = it.name, description = it.description, imageUrl = "$imageHost/$path", - isNew = recentSet.contains(it.id) + new = recentSet.contains(it.id) ) } )