From 6d631379255d3643da660bdfcdec533ee8912c00 Mon Sep 17 00:00:00 2001 From: Ian Yenien Serrano Date: Thu, 8 Feb 2024 13:45:26 +0100 Subject: [PATCH] Remove overveiw management plugin --- src/plugins/management_overview/public/plugin.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugins/management_overview/public/plugin.ts b/src/plugins/management_overview/public/plugin.ts index f11b58ef9b41..911f0b0cc4fa 100644 --- a/src/plugins/management_overview/public/plugin.ts +++ b/src/plugins/management_overview/public/plugin.ts @@ -10,6 +10,7 @@ import { Plugin, DEFAULT_APP_CATEGORIES, CoreStart, + AppStatus, } from '../../../core/public'; import { FeatureCatalogueCategory, HomePublicPluginSetup } from '../../home/public'; import { MANAGEMENT_OVERVIEW_PLUGIN_ID } from '../common/constants'; @@ -65,6 +66,7 @@ export class ManagementOverViewPlugin icon: '/ui/logos/opensearch_mark.svg', order: 9000, category: DEFAULT_APP_CATEGORIES.management, + status: AppStatus.inaccessible, mount: async (params: AppMountParameters) => { const { element } = params; const [core] = await getStartServices();