mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
## Summary This PR renames `AppFeatures` -> `ProductFeatures`. This module is responsible for managing the Security _features_ that are enabled according to the _product_ type used. After talking with different teams we agreed it would be more intuitive and easier to understand if we named it `ProductFeatures`, since `AppFeatures` is too vague and generic. This refactoring does not introduce any change in the application behavior. Internal docs will also be updated. --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
12 lines
607 B
TypeScript
12 lines
607 B
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0; you may not use this file except in compliance with the Elastic License
|
|
* 2.0.
|
|
*/
|
|
|
|
export { securityDefaultProductFeaturesConfig } from './src/security/product_feature_config';
|
|
export { getCasesDefaultProductFeaturesConfig } from './src/cases/product_feature_config';
|
|
export { assistantDefaultProductFeaturesConfig } from './src/assistant/product_feature_config';
|
|
|
|
export { createEnabledProductFeaturesConfigMap } from './src/helpers';
|