summaryrefslogtreecommitdiff
path: root/frontend/sw.js
blob: 5dcf564c92cfad0e12b8bc97deb3c38ae9faa369 (plain)
1
2
3
4
5
6
7
self.addEventListener('push', (e) => {
	const data = e.data.json();
	console.log(data);
	self.registration.showNotification("notif received", {
		body: "received",
	});
});