-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathplugin.json
42 lines (42 loc) · 2.03 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
39
40
41
42
{
"description": "A Mattermost plugin integration with Rollbar webhook events",
"id": "matterbar",
"min_server_version": "5.12.0",
"name": "Matterbar",
"server": {
"executable": "",
"executables": {
"darwin-amd64": "server/plugin-darwin-amd64",
"linux-amd64": "server/plugin-linux-amd64",
"windows-amd64": "server/plugin-windows-amd64.exe"
}
},
"settings_schema": {
"footer": "Configure Rollbar webhook notification settings at `https://rollbar.com/<user>/<project>/settings/notifications/`.\n\nPoint the webhook URL to Mattermost with the appropriate query params, e.g.\n\n`https://<mattermost-instance>.com/plugins/matterbar/notify?auth=<auth-secret>&team=<team-name>&channel=<channel-name>`",
"header": "",
"settings": [
{
"display_name": "Default Team",
"help_text": "The default team where Rollbar webhooks will be posted. If not configured, incoming requests must include a `team` query parameter.",
"key": "DefaultTeam",
"placeholder": "Team name",
"type": "text"
},
{
"display_name": "Default Channel",
"help_text": "The default channel where Rollbar webhooks will be posted. If not configured, incoming requests must include a `channel` query parameter. To use this setting, a default team must also be configured first.",
"key": "DefaultChannel",
"placeholder": "e.g. Rollbar",
"type": "text"
},
{
"display_name": "Auth Secret",
"help_text": "A generated secret that must be included in the `auth` query parameter to authorize incoming requests.",
"key": "Secret",
"regenerate_help_text": "Caution! Regenerating the auth secret will invalidate any existing integrations' requests.",
"type": "generated"
}
]
},
"version": "1.1.0"
}