Files
fake-xpack/plugins/ml/index.js
Joe Fleming ba769682d6 feat: mock plugins with real configs
so you no longer need to comment out xpack config in the kibana.dev.yml
2018-05-23 14:30:10 -07:00

13 lines
243 B
JavaScript

export function ml(kibana) {
return new kibana.Plugin({
name: 'ml',
id: 'ml',
configPrefix: 'xpack.ml',
config(Joi) {
return Joi.object({
enabled: Joi.boolean().default(true),
}).default();
},
});
}