fix(character-main): 최근 대화 캐릭터 조회에서 roomId 대신 characterId 반환
This commit is contained in:
@@ -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
|
||||
)
|
||||
|
||||
@@ -22,7 +22,7 @@ data class Character(
|
||||
)
|
||||
|
||||
data class RecentCharacter(
|
||||
val roomId: Long,
|
||||
val characterId: Long,
|
||||
val name: String,
|
||||
val imageUrl: String
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user