주문목록 - 크리에이터 닉네임 추가 #29

Merged
klaus merged 16 commits from test into main 2023-09-08 16:29:31 +00:00
1 changed files with 2 additions and 0 deletions
Showing only changes of commit 27c40da7b4 - Show all commits

View File

@ -42,6 +42,7 @@ class FcmSendListener(
@Transactional(propagation = Propagation.REQUIRES_NEW)
fun send(fcmEvent: FcmEvent) {
logger.info("발송타입 - ${fcmEvent.type}")
logger.info("os - ${fcmEvent.container}")
when (fcmEvent.type) {
FcmEventType.ALL -> {
@ -127,6 +128,7 @@ class FcmSendListener(
)
for (tokens in pushTokens) {
logger.info("토큰 - $tokens")
pushService.send(
tokens = tokens,
title = fcmEvent.title,