From 68387a1dcfb9db6f61e3a0f3ab336e2b14680a8f Mon Sep 17 00:00:00 2001 From: Tim Sullivan Date: Thu, 4 Jun 2020 11:37:12 -0700 Subject: [PATCH] [Reporting] Adds the enabled key to schema (#68288) --- x-pack/plugins/reporting/server/config/schema.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/x-pack/plugins/reporting/server/config/schema.ts b/x-pack/plugins/reporting/server/config/schema.ts index 402fddcb5e014..00102d372b27e 100644 --- a/x-pack/plugins/reporting/server/config/schema.ts +++ b/x-pack/plugins/reporting/server/config/schema.ts @@ -162,6 +162,7 @@ const PollSchema = schema.object({ }); export const ConfigSchema = schema.object({ + enabled: schema.boolean({ defaultValue: true }), kibanaServer: KibanaServerSchema, queue: QueueSchema, capture: CaptureSchema,