summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-05 16:37:30 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-05 16:37:30 +0200
commit09f60cce69bac1a974ed34a9b2cf8cf717579880 (patch)
tree49a187caf56f13f986f10c2a2f269d1b951dbcb6
parent:bug: fix bundle setup (diff)
downloadserver-09f60cce69bac1a974ed34a9b2cf8cf717579880.tar.xz
:sparkles: auto register guest account
-rw-r--r--api/client_test/index.html10
1 files changed, 10 insertions, 0 deletions
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",