[integration automatic-import] enabled by default (#189413)

Enabling the integration-assistant plugin / automatic import feature by
default
This commit is contained in:
Kylie Meli 2024-07-29 14:44:08 -04:00 committed by GitHub
parent 69de10f81f
commit bea05129fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,7 +9,7 @@ import { schema, type TypeOf } from '@kbn/config-schema';
import type { PluginConfigDescriptor } from '@kbn/core/server';
export const configSchema = schema.object({
enabled: schema.boolean({ defaultValue: false }),
enabled: schema.boolean({ defaultValue: true }),
});
export type ServerlessSecuritySchema = TypeOf<typeof configSchema>;