From d0634bb2e7c116e99bcceda7a8e350a807b9edda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B6=8C=ED=98=81=EC=84=B1?= Date: Fri, 30 Jan 2026 18:07:45 +0900 Subject: [PATCH] =?UTF-8?q?feat(WEB):=20FCM=20=ED=94=84=EB=A6=AC=EC=85=8B?= =?UTF-8?q?=20=EC=B1=84=EB=84=90=EB=AA=85=20=EB=8F=99=EA=B8=B0=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 결재 프리셋: push_payment → push_approval_request - 신규업체 프리셋: push_urgent → push_vendor_register --- src/lib/actions/fcm.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/actions/fcm.ts b/src/lib/actions/fcm.ts index b61bfc1a..e10906ea 100644 --- a/src/lib/actions/fcm.ts +++ b/src/lib/actions/fcm.ts @@ -112,7 +112,7 @@ export async function sendApprovalNotification( title: '결재 알림', body: '결재 문서가 완료되었습니다.', type: 'approval', - channel_id: 'push_payment', + channel_id: 'push_approval_request', ...customParams, }); } @@ -157,7 +157,7 @@ export async function sendNewClientNotification( title: '신규업체 알림', body: '새로운 업체가 등록되었습니다.', type: 'new_client', - channel_id: 'push_urgent', + channel_id: 'push_vendor_register', ...customParams, }); }