From a4d9fa79a1d6043708fb3f951b58337b2c0abfaa Mon Sep 17 00:00:00 2001 From: Anso Date: Tue, 21 Jul 2026 08:21:44 -0400 Subject: [PATCH] fix(sso): correct settings description to drop unsupported SAML claim (#1662) The SSO section description claimed SAML support, but Sencho only implements OIDC and LDAP/Active Directory; there is no SAML code path. --- frontend/src/components/settings/registry.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/settings/registry.ts b/frontend/src/components/settings/registry.ts index 96fa7cb6..cf9d4693 100644 --- a/frontend/src/components/settings/registry.ts +++ b/frontend/src/components/settings/registry.ts @@ -92,7 +92,7 @@ export const SETTINGS_ITEMS: readonly SettingsItemMeta[] = [ id: 'sso', group: 'access', label: 'SSO', - description: 'Single sign-on via SAML or OIDC identity providers.', + description: 'Single sign-on via OIDC or LDAP identity providers.', keywords: ['saml', 'oidc', 'okta', 'entra', 'azure', 'login'], tier: null, scope: 'global',