Redirect to login when not authenticated

This commit is contained in:
Reimar 2025-04-01 13:35:15 +02:00
parent 9529d2cdc8
commit 0c532fb979
Signed by: Reimar
GPG Key ID: 93549FA07F0AE268

View File

@ -16,6 +16,10 @@ export async function request(method, path, body = null) {
body: body ? JSON.stringify(body) : undefined,
})
.then(async response => {
if (response.status === 401) {
location.href = "/login";
}
try {
const json = await response.json();