Browse Source

Merge branch 'module/users' into dev

main
Stephan Richter 3 days ago
parent
commit
f42001788c
  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