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