From 944a3a9818049d0daada84c9a873ee6acccb5737 Mon Sep 17 00:00:00 2001 From: Mihai Doarna Date: Thu, 11 Jul 2024 13:54:17 +0300 Subject: [PATCH] Auth: Temporarily remove LDAP from UI until its config page is ready (#90323) temporarily remove LDAP from UI until its config page is ready --- public/app/features/auth-config/AuthProvidersListPage.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/app/features/auth-config/AuthProvidersListPage.tsx b/public/app/features/auth-config/AuthProvidersListPage.tsx index 171666929be..b3add89876d 100644 --- a/public/app/features/auth-config/AuthProvidersListPage.tsx +++ b/public/app/features/auth-config/AuthProvidersListPage.tsx @@ -55,6 +55,9 @@ export const AuthConfigPageUnconnected = ({ // filter out saml from sso providers because it is already included in availableProviders providers = providers.filter((p) => p.provider !== 'saml'); + // temporarily remove LDAP until its configuration form is ready + providers = providers.filter((p) => p.provider !== 'ldap'); + const providerList = availableProviders.length ? [ ...availableProviders.map((p) => ({