Skip to content

Commit

Permalink
Disable the feature by default
Browse files Browse the repository at this point in the history
  • Loading branch information
bhapas committed Jun 12, 2024
1 parent f67cffa commit a10dce0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/plugins/integration_assistant/server/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: true }),
enabled: schema.boolean({ defaultValue: false }),
});
export type ServerlessSecuritySchema = TypeOf<typeof configSchema>;

Expand Down

0 comments on commit a10dce0

Please sign in to comment.