-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
58 lines (54 loc) · 1.42 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import { i18n } from '@kbn/i18n';
export default function(kibana) {
return new kibana.Plugin({
require: ['elasticsearch'],
name: 'srirachaiq_jupyter',
uiExports: {
app: {
title: 'Srirachaiq Jupyter',
description: 'SrirachaIQ - JupyterLab',
main: 'plugins/srirachaiq_jupyter/app',
},
},
config(Joi) {
return Joi.object({
enabled: Joi.boolean().default(true),
}).default();
},
// eslint-disable-next-line no-unused-vars
init(server, options) {
const xpackMainPlugin = server.plugins.xpack_main;
if (xpackMainPlugin) {
const featureId = 'srirachaiq_jupyter';
xpackMainPlugin.registerFeature({
id: featureId,
name: i18n.translate('srirachaiqJupyter.featureRegistry.featureName', {
defaultMessage: 'srirachaiq_jupyter',
}),
navLinkId: featureId,
icon: 'questionInCircle',
app: [featureId, 'kibana'],
catalogue: [],
privileges: {
all: {
api: [],
savedObject: {
all: [],
read: [],
},
ui: ['show'],
},
read: {
api: [],
savedObject: {
all: [],
read: [],
},
ui: ['show'],
},
},
});
}
},
});
}