From 72009ced67bf6a464896b2bde0b91ab07c8903d2 Mon Sep 17 00:00:00 2001 From: Kyle Mendell Date: Sun, 4 Jan 2026 12:04:16 -0600 Subject: [PATCH] feat: add issuer url to oidc client details list (#1197) --- frontend/messages/en.json | 3 ++- .../routes/settings/admin/oidc-clients/[id]/+page.svelte | 9 +++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/frontend/messages/en.json b/frontend/messages/en.json index 59d641e6..b31681f3 100644 --- a/frontend/messages/en.json +++ b/frontend/messages/en.json @@ -498,5 +498,6 @@ "scim_sync_successful": "The SCIM sync has been completed successfully.", "save_and_sync": "Save and Sync", "scim_save_changes_description": "You have to save the changes before starting a SCIM sync. Do you want to save now?", - "scopes": "Scopes" + "scopes": "Scopes", + "issuer_url": "Issuer URL" } diff --git a/frontend/src/routes/settings/admin/oidc-clients/[id]/+page.svelte b/frontend/src/routes/settings/admin/oidc-clients/[id]/+page.svelte index a9e41d05..cda7c004 100644 --- a/frontend/src/routes/settings/admin/oidc-clients/[id]/+page.svelte +++ b/frontend/src/routes/settings/admin/oidc-clients/[id]/+page.svelte @@ -38,6 +38,7 @@ const backNavigation = backNavigate('/settings/admin/oidc-clients'); const setupDetails = $state({ + [m.issuer_url()]: `https://${page.url.host}`, [m.authorization_url()]: `https://${page.url.host}/authorize`, [m.oidc_discovery_url()]: `https://${page.url.host}/.well-known/openid-configuration`, [m.token_url()]: `https://${page.url.host}/api/oidc/token`, @@ -207,14 +208,14 @@
- {m.client_id()} + {m.client_id()} {client.id}
{#if !client.isPublic}
- {m.client_secret()} + {m.client_secret()} {#if $clientSecretStore} @@ -240,8 +241,8 @@ {#if showAllDetails}
{#each Object.entries(setupDetails) as [key, value]} -
- {key} +
+ {key} {value}