-
Notifications
You must be signed in to change notification settings - Fork 3
/
settingsmeta.json
99 lines (99 loc) · 3.38 KB
/
settingsmeta.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"skillMetadata": {
"sections": [
{
"name": "Login data",
"fields": [
{
"name": "username",
"type": "text",
"label": "Username",
"value": ""
},
{
"type": "label",
"label": "Either specify access token or use login-id AND password"
},
{
"name": "token",
"type": "password",
"label": "Personal access token",
"value": ""
},
{
"name": "login_id",
"type": "text",
"label": "Login-ID (e.g. your email)",
"value": ""
},
{
"name": "password",
"type": "password",
"label": "Password",
"value": ""
}
]
},
{
"name": "Monitoring",
"fields": [
{
"type": "label",
"label": "You have to enable Monitoring here or by saying 'Hey Mycroft, begin monitoring of Mycroft Chat'"
},
{
"name": "monitoring",
"type": "checkbox",
"label": "Enable monitoring",
"value": "False"
},
{
"name": "ttl",
"type": "number",
"label": "Check for update every x minutes",
"value": "10"
},
{
"name": "notify_on_updates",
"type": "checkbox",
"label": "Notify on updates",
"value": "True"
}
]
},
{
"name": "Advanced - Server configuration",
"fields": [
{
"type": "label",
"label": "Defaults are for chat.mycroft.ai - change anything here and you are on your own..."
},
{
"name": "scheme",
"type": "text",
"label": "Scheme",
"value": "https"
},
{
"name": "url",
"type": "text",
"label": "URL",
"value": "chat.mycroft.ai"
},
{
"name": "port",
"type": "number",
"label": "Port number",
"value": "443"
},
{
"name": "verify",
"type": "checkbox",
"label": "Verify SSL certificate",
"value": "True"
}
]
}
]
}
}