-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jason Greenberg
authored and
Jason Greenberg
committed
Nov 18, 2017
1 parent
446af7b
commit 9733dd5
Showing
16 changed files
with
3,695 additions
and
250 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,23 @@ | ||
import { resolve } from 'path'; | ||
|
||
var allow_unsafe = false; | ||
|
||
export default function (kibana) { | ||
|
||
return new kibana.Plugin({ | ||
require: ['elasticsearch'], | ||
name: 'transform_vis', | ||
|
||
uiExports: { | ||
visTypes: [ | ||
'plugins/transform_vis/transform_vis' | ||
'plugins/transform_vis/transform_vis' | ||
], | ||
injectDefaultVars(server, options) { | ||
return { | ||
transformVisOptions: options | ||
}; | ||
} | ||
}, | ||
|
||
config(Joi) { | ||
return Joi.object({ | ||
enabled: Joi.boolean().default(true), | ||
allow_unsafe: Joi.boolean().default(false) | ||
}).default(); | ||
}, | ||
|
||
|
||
}); | ||
}; | ||
} |
Oops, something went wrong.