test #94

Merged
klaus merged 4 commits from test into main 2023-11-24 07:03:11 +00:00
3 changed files with 4 additions and 4 deletions
Showing only changes of commit 84102bb95a - Show all commits

View File

@ -81,7 +81,7 @@ class ChargeEventService(
title = chargeEvent.title, title = chargeEvent.title,
message = "$additionalCan 캔이 추가 지급되었습니다.", message = "$additionalCan 캔이 추가 지급되었습니다.",
recipients = listOf(member.id!!), recipients = listOf(member.id!!),
isAuth = false isAuth = null
) )
) )
} }
@ -103,7 +103,7 @@ class ChargeEventService(
title = "첫 충전 이벤트", title = "첫 충전 이벤트",
message = "$additionalCan 캔이 추가 지급되었습니다.", message = "$additionalCan 캔이 추가 지급되었습니다.",
recipients = listOf(member.id!!), recipients = listOf(member.id!!),
isAuth = false isAuth = null
) )
) )
} }

View File

@ -78,7 +78,7 @@ class AdsChargeService(
title = "제휴보상", title = "제휴보상",
message = "${adsCharge.point.toInt()} 캔이 지급되었습니다.", message = "${adsCharge.point.toInt()} 캔이 지급되었습니다.",
recipients = listOf(member.id!!), recipients = listOf(member.id!!),
isAuth = false isAuth = null
) )
) )
} }

View File

@ -341,7 +341,7 @@ class AudioContentService(
title = "콘텐츠 등록완료", title = "콘텐츠 등록완료",
message = audioContent.title, message = audioContent.title,
recipients = listOf(audioContent.member!!.id!!), recipients = listOf(audioContent.member!!.id!!),
isAuth = audioContent.isAdult, isAuth = null,
contentId = contentId contentId = contentId
) )
) )