From 99bc6704a9281482a9432478322e5f640f476d17 Mon Sep 17 00:00:00 2001 From: Constance Chen Date: Wed, 13 May 2020 15:22:48 -0700 Subject: [PATCH] Switch plugin URLs back to /app/enterprise_search/app_search Now that https://github.com/elastic/kibana/pull/66455 has been merged in :tada: --- x-pack/plugins/enterprise_search/public/plugin.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/enterprise_search/public/plugin.ts b/x-pack/plugins/enterprise_search/public/plugin.ts index 3f6493a81272f9b..5863df5ccba25dd 100644 --- a/x-pack/plugins/enterprise_search/public/plugin.ts +++ b/x-pack/plugins/enterprise_search/public/plugin.ts @@ -42,7 +42,7 @@ export class EnterpriseSearchPlugin implements Plugin { core.application.register({ id: 'app_search', title: 'App Search', - // appRoute: '/app/enterprise_search/app_search', // TODO: Switch to this once https://github.com/elastic/kibana/issues/59190 is in + appRoute: '/app/enterprise_search/app_search', category: DEFAULT_APP_CATEGORIES.enterpriseSearch, mount: async (params: AppMountParameters) => { const [coreStart] = await core.getStartServices(); @@ -61,7 +61,7 @@ export class EnterpriseSearchPlugin implements Plugin { icon: AppSearchLogo, description: 'Leverage dashboards, analytics, and APIs for advanced application search made simple.', - path: '/app/app_search', // TODO: Switch to '/app/enterprise_search/app_search' once https://github.com/elastic/kibana/issues/59190 is in + path: '/app/enterprise_search/app_search', category: FeatureCatalogueCategory.DATA, showOnHomePage: true, });