generated from mattermost/mattermost-plugin-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
30 lines (30 loc) · 877 Bytes
/
plugin.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
{
"id": "com.harshil.mattermost.plugin.aqi",
"version": "1.0.0",
"name": "Air Quality Index",
"description": "TODO",
"min_server_version": "5.17.0",
"webapp": {
"bundle_path": "webapp/main.js"
},
"server": {
"executable": "server/plugin.exe"
},
"settings_schema": {
"header": "",
"footer": "",
"settings": [
{
"key": "AirVisualAPIKey",
"display_name": "AirVisual API Key",
"type": "text",
"help_text": "Go to https://www.airvisual.com/air-pollution-data-api TODO"
}, {
"key": "Locations",
"display_name": "Array of Locations",
"type": "text",
"help_text": "[\"country_state_city\", \"country_state_city\", ...]]"
}
]
}
}