-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.json
80 lines (80 loc) · 1.62 KB
/
config.example.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
{
"buttons": [
{
"mac": "xxxxx",
"provider": "xxxxx",
"providerConfig": {
"listId": "xxxxx",
"productName": "xxxxx"
}
},
{
"mac": "xxxxx",
"provider": "bring",
"providerConfig": {
"listId": "xxxxx",
"productName": "xxxxx"
}
},
{
"mac": "xxxx",
"provider": "slack",
"providerConfig": {
"channel": "xxxx",
"username": "dash-bot",
"text": ":grin:",
"icon_emoji": "true"
}
},
{
"mac": "xxxx",
"provider": "meetingReminder",
"providerConfig": {
"calendarId": "primary",
"time": "now"
}
},
{
"mac": "xxxx",
"provider": "webhook",
"providerConfig": {
"url": "http://httpbin.org/response-headers",
"method": "get",
"parameters": {
"key": "beep"
}
}
}
],
"providerConfig": {
"bring": {
"notificationUserId": "xxxxx",
"notificationApiKey": "xxxxx",
"notificationUserUuid": "xxxxx",
"notificationSender": "xxxxx"
},
"slack": {
"token": "xxxx"
},
"meetingReminder": {
"slackToken": "xxxxx",
"secretFile": {
"installed": {
"client_id": "xxxxx",
"project_id": "xxxx",
"auth_uri": "xxxxx",
"token_uri": "xxxxx",
"auth_provider_x509_cert_url": "xxxxx",
"client_secret": "xxxxx",
"redirect_uris": [
"xxxxx",
"http://localhost"
]
}
}
},
"webhook": {
"url": "http://httpbin.org/"
}
}
}