1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-23 02:42:28 +01:00

auto register guest account

This commit is contained in:
Flam3rboy 2021-10-05 16:37:30 +02:00
parent 9d67c7f7fc
commit 09f60cce69

View File

@ -39,6 +39,16 @@
// TODO: remote auth
// window.GLOBAL_ENV.REMOTE_AUTH_ENDPOINT = window.GLOBAL_ENV.GATEWAY_ENDPOINT.replace(/wss?:/, "");
localStorage.removeItem("gatewayURL");
const token = JSON.parse(localStorage.getItem("token"));
if (!token) {
fetch(`${window.GLOBAL_ENV.API_ENDPOINT}/auth/register`, {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify({ username: "Anonymous", consent: true })
})
.then((x) => x.json())
.then((x) => localStorage.setItem("token", `"${x.token}"`));
}
localStorage.setItem(
"DeveloperOptionsStore",