Remove alerts and actions from feature catalogue (#56140)

This commit is contained in:
Mike Côté 2020-01-28 13:35:39 -05:00 committed by GitHub
parent f97bc898bb
commit febb840570
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 26 deletions

View file

@ -29,7 +29,6 @@ export function triggersActionsUI(kibana: any) {
.default();
},
uiExports: {
home: ['plugins/triggers_actions_ui/hacks/register'],
managementSections: ['plugins/triggers_actions_ui/legacy'],
styleSheetPaths: resolve(__dirname, 'public/index.scss'),
injectDefaultVars(server: Legacy.Server) {

View file

@ -1,25 +0,0 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
import { i18n } from '@kbn/i18n';
import {
FeatureCatalogueRegistryProvider,
FeatureCatalogueCategory,
} from 'ui/registry/feature_catalogue';
FeatureCatalogueRegistryProvider.register(() => {
return {
id: 'triggersActions',
title: 'Alerts and Actions', // This is a product name so we don't translate it.
description: i18n.translate('xpack.triggersActionsUI.triggersActionsDescription', {
defaultMessage: 'Data by creating, managing, and monitoring triggers and actions.',
}),
icon: 'triggersActionsApp',
path: '/app/kibana#/management/kibana/triggersActions',
showOnHomePage: true,
category: FeatureCatalogueCategory.ADMIN,
};
});