From 1f532d12d4fd8df4116a63ea62a8b21eba1d2db3 Mon Sep 17 00:00:00 2001 From: altaf-creator Date: Sat, 29 Nov 2025 23:47:09 +0700 Subject: response codes --- frontend/main.js | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'frontend/main.js') diff --git a/frontend/main.js b/frontend/main.js index 6f953ce..40a965b 100644 --- a/frontend/main.js +++ b/frontend/main.js @@ -7,16 +7,6 @@ const data = { const API_URL = "https://backend.laundryweb.altafcreator.com" -// --- permission request -const btn = document.getElementById("notbtn") -if (btn) { - btn.addEventListener("click", () => requestPermission()) - function requestPermission() { - console.log("Requesting permission..."); - OneSignal.Notifications.requestPermission(); - } -} - // --- check user status // returns true if there exists a timer, and returns false otherwise. // cookie need to be included. @@ -216,7 +206,7 @@ async function fetchTimers() { method: "POST", credentials: "include", }); - return await response.json(); + return [response.status, response.json()]; } const delay = (durationMs) => { -- cgit v1.2.3