From 28f231da8e52cea005567433f62c306cc3ae0e3a Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Tue, 17 Feb 2026 14:56:24 +0000 Subject: [PATCH] Suggest icon URL for OIDC. --- frontend/src/admin/AdminOidcDetail.vue | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/frontend/src/admin/AdminOidcDetail.vue b/frontend/src/admin/AdminOidcDetail.vue index 4fe3859..2eb698f 100644 --- a/frontend/src/admin/AdminOidcDetail.vue +++ b/frontend/src/admin/AdminOidcDetail.vue @@ -23,6 +23,7 @@ const clientSecret = ref(null) // Computed const discoveryUrl = computed(() => `${window.location.origin}/.well-known/openid-configuration`) const clientId = computed(() => props.client?.client_id || props.client?.uuid || '') +const iconUrl = computed(() => `${authStore.settings.auth_site_url}/favicon.ico`) // Groups (permissions) scoped to this client const clientGroups = computed(() => { @@ -130,9 +131,6 @@ defineExpose({ focusFirstElement }) (Login With, may affect URLs – optional) -
Auto Discovery URL
-
{{ discoveryUrl }}
-
Client ID
{{ clientId }}
@@ -142,6 +140,13 @@ defineExpose({ focusFirstElement }) (only stored in hashed form) +
Auto Discovery URL
+
{{ discoveryUrl }}
+ +
Icon URL
+
{{ iconUrl }}
+ +