test #356

Merged
klaus merged 2 commits from test into main 2025-11-06 08:48:23 +00:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 8fb3bd578f - Show all commits

View File

@@ -1277,7 +1277,7 @@ class LiveRoomService(
canPaymentService.spendCan( canPaymentService.spendCan(
memberId = member.id!!, memberId = member.id!!,
needCan = 1, needCan = request.heartCount ?: 1,
canUsage = CanUsage.HEART, canUsage = CanUsage.HEART,
isSecret = false, isSecret = false,
liveRoom = room, liveRoom = room,

View File

@@ -2,5 +2,6 @@ package kr.co.vividnext.sodalive.live.room.like
data class LiveRoomLikeHeartRequest( data class LiveRoomLikeHeartRequest(
val roomId: Long, val roomId: Long,
val container: String val container: String,
val heartCount: Int? = null
) )