Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save captainbrosset/6aac1492e7503993a50df791db8d67e6 to your computer and use it in GitHub Desktop.
Save captainbrosset/6aac1492e7503993a50df791db8d67e6 to your computer and use it in GitHub Desktop.
Incoming Calls Notification API with buttons
const title = "Incoming call";
const options = {
scenario: "incoming-call",
title: "Andrew Bares",
body: "Incoming Call - Mobile",
actions: [
{
action: "accept-audio-call",
title: "audio"
},
{
action: "accept-video-call",
title: "video"
}
]
}
serviceWorkerRegistration.showNotification(title, options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment