fixed api url

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-11-21 22:12:08 +01:00
parent 0486289beb
commit 66dcfba457

View File

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