-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
49 lines (44 loc) · 1.08 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//B"H
var base = "https://awtsmoos.42web.io/";
async function getSession() {
return await (
await fetch(
base, {
method: "POST",
body: new URLSearchParams({
action: "session"
})
}
)
).json()
}
(async () => {
var sesh = await getSession();
if(sesh.error == "Not logged in") {
location.href = "./sign-in.html"
} else if(sesh.success) {
location.href = "./settings.html"
}
console.log(
"B\"H",
"\n\n",
sesh
)
})();
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/app/sw.js')
.then((registration) => {
console.log('Service Worker registered:', registration);
})
.catch((error) => {
console.error('Service Worker registration failed:', error);
});
}
// Request Notification Permission
if ('Notification' in window) {
Notification.requestPermission().then((permission) => {
if (permission === 'granted') {
console.log('Notifications enabled!');
}
});
}