캐릭터 챗봇 #338

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

View File

@ -133,6 +133,10 @@ class ChatRoomController(
if (member == null) throw SodaException("로그인 정보를 확인해주세요.") if (member == null) throw SodaException("로그인 정보를 확인해주세요.")
if (member.auth == null) throw SodaException("본인인증을 하셔야 합니다.") if (member.auth == null) throw SodaException("본인인증을 하셔야 합니다.")
if (request.message.isBlank()) {
ApiResponse.error()
} else {
ApiResponse.ok(chatRoomService.sendMessage(member, chatRoomId, request.message)) ApiResponse.ok(chatRoomService.sendMessage(member, chatRoomId, request.message))
} }
} }
}