-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathplugin.json
43 lines (43 loc) · 1.67 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
43
{
"id": "com.github.manland.mattermost-plugin-analytics",
"name": "Analytics matter",
"description": "This plugin give analytics of your mattermost instance to your users.",
"version": "0.2.0",
"min_server_version": "5.6.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"settings_schema": {
"header": "Analytics bot configuration",
"footer": "",
"settings": [
{
"key": "Username",
"display_name": "User",
"type": "username",
"help_text": "Select the username of the user that the plugin will post with. This can be any user, the name and icon will be overridden when posting."
}, {
"key": "TeamsChannels",
"display_name": "Team/Channel",
"type": "text",
"placeholder": "myTeam1/channel1,myTeam2/channel2",
"help_text": "Enter the teams and channels where this plugin will post analytics every week."
}, {
"key": "BotUsername",
"display_name": "Bot username",
"type": "text",
"default": "Analytics",
"help_text": "Enter the name with the bot will post as."
}, {
"key": "BotIconURL",
"display_name": "Bot icon url",
"type": "text",
"help_text": "Enter the icon url with the bot will post as."
}
]
}
}