mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
[Security Solution] Set the Get File feature flag to true by default (#149612)
## Summary Sets the Get File feature flag to true by default in preparation for the release of the feature. ### Checklist - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios --------- Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
ce0ad6e42d
commit
a0c689a8a0
4 changed files with 3 additions and 2 deletions
|
@ -79,7 +79,7 @@ export const allowedExperimentalValues = Object.freeze({
|
|||
/**
|
||||
* Enables the `get-file` endpoint response action
|
||||
*/
|
||||
responseActionGetFileEnabled: false,
|
||||
responseActionGetFileEnabled: true,
|
||||
|
||||
/**
|
||||
* Enables top charts on Alerts Page
|
||||
|
|
|
@ -14,7 +14,6 @@ const ExperimentalFeaturesServiceMock = {
|
|||
get: jest.fn(() => {
|
||||
const ff: ExperimentalFeatures = {
|
||||
...allowedExperimentalValues,
|
||||
responseActionGetFileEnabled: true,
|
||||
};
|
||||
|
||||
return ff;
|
||||
|
|
|
@ -50,6 +50,7 @@ export default function ({ getService }: FtrProviderContext) {
|
|||
'actions_log_management_read',
|
||||
'host_isolation_all',
|
||||
'process_operations_all',
|
||||
'file_operations_all',
|
||||
],
|
||||
uptime: ['all', 'read', 'minimal_all', 'minimal_read'],
|
||||
securitySolutionCases: ['all', 'read', 'minimal_all', 'minimal_read', 'cases_delete'],
|
||||
|
|
|
@ -120,6 +120,7 @@ export default function ({ getService }: FtrProviderContext) {
|
|||
'read',
|
||||
'trusted_applications_all',
|
||||
'trusted_applications_read',
|
||||
'file_operations_all',
|
||||
],
|
||||
uptime: ['all', 'read', 'minimal_all', 'minimal_read'],
|
||||
securitySolutionCases: ['all', 'read', 'minimal_all', 'minimal_read', 'cases_delete'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue