-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
57 lines (57 loc) · 1.55 KB
/
app.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
{
"id": "nl.tonversteeg.pushalot",
"name": {
"en": "Pushalot Notifications"
},
"version": "0.0.2",
"compatibility": "0.x || 1.x",
"author": {
"name": "Ton Versteeg",
"email": "[email protected]"
},
"images": {
"large": "./assets/images/large.jpg",
"small": "./assets/images/small.jpg"
},
"category": "internet",
"description": {
"en": "Pushalot notifications for Homey",
"nl": "Pushalot notificatie voor Homey"
},
"permissions": ["homey:manager:ledring"
],
"flow": {
"actions": [
{
"id": "pushalotSend",
"title": {
"en": "Pushalot notification",
"nl": "Pushalot notificatie"
},
"args": [
{
"name":"message",
"type":"text",
"placeholder":{
"en":"Message",
"nl":"Bericht"
}
},
{
"name": "message_type",
"type": "dropdown",
"values": [
{ "id": "Normal", "label": { "en": "Normal", "nl": "Normaal"}},
{ "id": "Important", "label": { "en": "Important", "nl": "Belangrijk"}},
{ "id": "Silent", "label": { "en": "Silent", "nl": "Stil"}}
],
"placeholder": { "en": "Type", "nl": "Type" }
}
]
}
]
},
"dependencies": {
"Pushalot-node": "*"
}
}