Push notification
Monday, November 25, 2024 10:49:26 AM
Thanks for response. I can't check it on your enviroment becouse i haven't admin credetials. Maybe on my enviroment i have wrong version node.js or typescript. I have https certificate, becouse push notification show me but alwas redirect to home url not url from shop.
0
I resolve my problem by add to file GrandNode2-2.0.0_Source\src\Web\Grand.Web\wwwroot\theme\script\public.push.notifications.js new function.
This section resolve my problem.
var notification = new Notification(notificationTitle, notificationOptions);
notification.onclick = function (event) {
event.preventDefault(); // prevent the browser from focusing the Notification's tab
window.location.assign(payload.notification.click_action);
This section resolve my problem.
0