forked from WebThingsIO/mozilla-webthings-gateway-skill
-
Notifications
You must be signed in to change notification settings - Fork 1
/
settingsmeta.json
43 lines (43 loc) · 1.34 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
{
"name": "Mozilla WebThings Gateway",
"skillMetadata": {
"sections": [
{
"name": "Gateway Configuration (Automatic)",
"fields": [
{
"type": "label",
"label": "Click to authorize:"
},
{
"type": "oauth",
"name": "Mozilla",
"value": 8
}
]
},
{
"name": "Manual Configuration",
"fields": [
{
"type": "label",
"label": "Not recommended, use only if your gateway is local-only"
},
{
"name": "host",
"type": "text",
"label": "Gateway URL",
"placeholder": "https://gateway.local",
"value": ""
},
{
"name": "token",
"type": "password",
"label": "Local Token from Settings > Developer > Create Local Token",
"value": ""
}
]
}
]
}
}