From 2c3fe9bd9ef10ddf25db800c78a4bc6108a9bbaf Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Tue, 5 Oct 2021 16:37:30 +0200 Subject: [PATCH] :sparkles: auto register guest account --- api/client_test/index.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/api/client_test/index.html b/api/client_test/index.html index ebe92e4c..7aa4490a 100644 --- a/api/client_test/index.html +++ b/api/client_test/index.html @@ -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",