fix(character-main): 최근 대화 캐릭터 조회에서 roomId 대신 characterId 반환

This commit is contained in:
2025-08-28 19:50:20 +09:00
parent d26e0a89f6
commit 550e4ac9ce
5 changed files with 7 additions and 3 deletions

View File

@@ -57,7 +57,7 @@ class ChatCharacterController(
chatRoomService.listMyChatRooms(member, 0, 10)
.map { room ->
RecentCharacter(
roomId = room.chatRoomId,
characterId = room.characterId,
name = room.title,
imageUrl = room.imageUrl
)

View File

@@ -22,7 +22,7 @@ data class Character(
)
data class RecentCharacter(
val roomId: Long,
val characterId: Long,
val name: String,
val imageUrl: String
)