send test push notifications to specific users only

This commit is contained in:
Dobromir Popov
2024-06-17 21:08:03 +03:00
parent 94597e2440
commit 090b1704d3
3 changed files with 16 additions and 3 deletions

View File

@ -114,7 +114,7 @@ const Notification = async (req, res) => {
}
else if (id) {
console.log('Sending push notification to publisher ', id)
await sendPush(id, title, message.actions)
await sendPush(id, title, message, actions)
res.statusCode = 200
res.end()
return