캐릭터 챗봇 #338

Merged
klaus merged 119 commits from test into main 2025-09-10 06:08:47 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 28bd700b03 - Show all commits

View File

@ -53,7 +53,7 @@ interface ChatRoomRepository : JpaRepository<ChatRoom, Long> {
AND pc.participantType = kr.co.vividnext.sodalive.chat.room.ParticipantType.CHARACTER AND pc.participantType = kr.co.vividnext.sodalive.chat.room.ParticipantType.CHARACTER
AND pc.isActive = true AND pc.isActive = true
AND r.isActive = true AND r.isActive = true
GROUP BY r.id, r.title, r.createdAt, pc.character.imagePath GROUP BY r.id, r.title, r.createdAt, pc.character.imagePath, pc.character.characterType
ORDER BY COALESCE(MAX(m.createdAt), r.createdAt) DESC ORDER BY COALESCE(MAX(m.createdAt), r.createdAt) DESC
""" """
) )