Security solution newsfeed for Serverless (#168737)

Bringing back security newsfeed for serverless project
This commit is contained in:
Yuliia Naumenko 2023-10-12 14:19:28 -07:00 committed by GitHub
parent d5c8067451
commit 679716d0b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 1 deletions

View file

@ -23,6 +23,8 @@ xpack.securitySolution.offeringSettings: {
ESQLEnabled: false, # ES|QL disabled, not supported by serverless Elasticsearch
}
newsfeed.enabled: true
## Set the home route
uiSettings.overrides.defaultRoute: /app/security/get_started

View file

@ -157,8 +157,8 @@ export const SECURITY_SOLUTION_DEFAULT_INDEX_ID = 'securitySolution:defaultIndex
export const SECURITY_SOLUTION_DEFAULT_THREAT_INDEX_ID = 'securitySolution:defaultThreatIndex';
export const SECURITY_SOLUTION_DEFAULT_ANOMALY_SCORE_ID = 'securitySolution:defaultAnomalyScore';
export const SECURITY_SOLUTION_ENABLE_GROUPED_NAV_ID = 'securitySolution:enableGroupedNav';
export const SECURITY_SOLUTION_ENABLE_NEWS_FEED_ID = 'securitySolution:enableNewsFeed';
export const SECURITY_SOLUTION_RULES_TABLE_REFRESH_ID = 'securitySolution:rulesTableRefresh';
export const SECURITY_SOLUTION_ENABLE_NEWS_FEED_ID = 'securitySolution:enableNewsFeed';
export const SECURITY_SOLUTION_NEWS_FEED_URL_ID = 'securitySolution:newsFeedUrl';
export const SECURITY_SOLUTION_IP_REPUTATION_LINKS_ID = 'securitySolution:ipReputationLinks';
export const SECURITY_SOLUTION_ENABLE_CCS_WARNING_ID = 'securitySolution:enableCcsWarning';

View file

@ -20,4 +20,6 @@ export const SECURITY_PROJECT_SETTINGS = [
settings.SECURITY_SOLUTION_IP_REPUTATION_LINKS_ID,
settings.SECURITY_SOLUTION_ENABLE_CCS_WARNING_ID,
settings.SECURITY_SOLUTION_SHOW_RELATED_INTEGRATIONS_ID,
settings.SECURITY_SOLUTION_NEWS_FEED_URL_ID,
settings.SECURITY_SOLUTION_ENABLE_NEWS_FEED_ID,
];