feat(WEB): FCM 프리셋 채널명 동기화

- 결재 프리셋: push_payment → push_approval_request
- 신규업체 프리셋: push_urgent → push_vendor_register
This commit is contained in:
2026-01-30 18:07:45 +09:00
parent a679e2695d
commit d0634bb2e7

View File

@@ -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,
});
}