Compare commits

..

No commits in common. "fa8d8c4ab13a5188d3b7ea0756825ca3b0588870" and "4900b52d2b18c042f14e86f2329c0c55ce72321a" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View File

@ -283,7 +283,7 @@ class LiveRoomService(
?: throw SodaException("이미 종료된 방입니다")
if (room.isAdult && member.auth == null) {
throw SodaException("본인인증이 필요한 서비스 입니다.\n소다라이브 마이페이지에서 본인인증 후 다시 이용해 주세요.")
throw SodaException("본인인증이 필요한 서비스 입니다.\n요즘라이브 마이페이지에서 본인인증 후 다시 이용해 주세요.")
}
val beginDateTime = room.beginDateTime

View File

@ -146,16 +146,16 @@ class MessageService(
return getVoiceMessageResponse(totalCount, messageList, timezone)
}
fun getReceivedVoiceMessages(member: Member, pageable: Pageable, timezone: String): GetVoiceMessageResponse {
fun getReceivedVoiceMessages(member: Member, pageable: Pageable, timezone: String): GetTextMessageResponse {
val totalCount = repository.getReceivedVoiceMessageCount(memberId = member.id!!)
val messageList = repository.getReceivedVoiceMessageList(pageable, memberId = member.id!!)
return getVoiceMessageResponse(totalCount, messageList, timezone)
return getTextMessageResponse(totalCount, messageList, timezone)
}
fun getKeepVoiceMessages(member: Member, pageable: Pageable, timezone: String): GetVoiceMessageResponse {
fun getKeepVoiceMessages(member: Member, pageable: Pageable, timezone: String): GetTextMessageResponse {
val totalCount = repository.getKeepVoiceMessageCount(memberId = member.id!!)
val messageList = repository.getKeepVoiceMessageList(pageable, memberId = member.id!!)
return getVoiceMessageResponse(totalCount, messageList, timezone)
return getTextMessageResponse(totalCount, messageList, timezone)
}
@Transactional