-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplugin.json
38 lines (38 loc) · 1.58 KB
/
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
31
32
33
34
35
36
37
38
{
"id": "statuspage",
"name": "Statuspage",
"description": "This plugin send Statuspage notifications to a Mattermost channel.",
"version": "0.1.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"linux-arm64": "server/dist/plugin-linux-arm64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"darwin-arm64": "server/dist/plugin-darwin-arm64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"settings_schema": {
"header": "",
"footer": "Use this webhook URL to set up the Statuspage integration.\n\n`https://SITEURL/plugins/statuspage/webhook?service=<NAMEOFSERVICE>&token=TOKEN`",
"settings": [
{
"key": "Team",
"display_name": "Team:",
"type": "text",
"help_text": "Team you want to send messages to. Use team URL, instead of a display name."
},
{
"key": "Channel",
"display_name": "Channel:",
"type": "text",
"help_text": "Channel you want to send messages to. Use channel URL such as 'town-square', instead of a display name. If you specify a channel that does not exist, this plugin creates a new channel with that name."
},
{
"key": "Token",
"display_name": "Token:",
"type": "generated",
"help_text": "The token used to configure the webhook for Statuspage. The token is validates for each webhook request by the Mattermost server."
}]
}
}