Skip to content

Instantly share code, notes, and snippets.

@ologunB
Created December 2, 2021 15:50
Show Gist options
  • Save ologunB/2fd5d8c4c0e099b670fe9c63feef738a to your computer and use it in GitHub Desktop.
Save ologunB/2fd5d8c4c0e099b670fe9c63feef738a to your computer and use it in GitHub Desktop.
exports.requestAgain = functions.https.onCall(async (snap, context)=>{
const payload = {
notification:{
title : snap.title ,
body : snap.body,
badge : '1',
sound : 'default'
},
data: {
id: snap.id,
uid: snap.uid,
type: 'new-serving',
click_action: "FLUTTER_NOTIFICATION_CLICK",
status: "done",
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment