|
|
|
@ -8,7 +8,7 @@ |
|
|
|
let connections = $state([]); |
|
|
|
let connections = $state([]); |
|
|
|
|
|
|
|
|
|
|
|
async function loadConnections(){ |
|
|
|
async function loadConnections(){ |
|
|
|
const url = api('/user/oidc/connected'); |
|
|
|
const url = api('user/oidc/connected'); |
|
|
|
const resp = await fetch(url,{credentials:'include'}); |
|
|
|
const resp = await fetch(url,{credentials:'include'}); |
|
|
|
if (resp.ok){ |
|
|
|
if (resp.ok){ |
|
|
|
const arr = await resp.json(); |
|
|
|
const arr = await resp.json(); |
|
|
|
|