fix(character): isNew -> new로 변경

This commit is contained in:
2025-11-14 05:39:56 +09:00
parent f278497526
commit 04e7c90407
3 changed files with 6 additions and 6 deletions

View File

@@ -93,7 +93,7 @@ class ChatCharacterController(
name = it.name,
description = it.description,
imageUrl = "$imageHost/${it.imagePath ?: "profile/default-profile.png"}",
isNew = false
new = false
)
}
)

View File

@@ -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)
)
}

View File

@@ -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)
)
}
)