Browse Source

fixed api url

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
module/users
Stephan Richter 3 days ago
parent
commit
66dcfba457
  1. 2
      frontend/src/routes/user/ConnectedServices.svelte

2
frontend/src/routes/user/ConnectedServices.svelte

@ -8,7 +8,7 @@ @@ -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();

Loading…
Cancel
Save