generated from mattermost/mattermost-plugin-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
47 lines (47 loc) · 1.87 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
44
45
46
47
{
"id": "com.mattermost.mammut-mattermost-plugin",
"name": "mammut-mattermost-plugin",
"description": "This plugin serves as a starting point for writing a Mattermost plugin.",
"version": "0.1.0",
"min_server_version": "5.12.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": "Header: Configure your demo plugin settings below",
"footer": "Footer: The code for this demo plugin can be found [here](https://github.com/mattermost/mattermost-plugin-demo)",
"settings": [{
"key": "ChannelName",
"display_name": "Channel Name",
"type": "text",
"help_text": "The channel to use as part of the demo plugin, created for each team automatically if it does not exist.",
"placeholder": "demo_plugin",
"default": "demo_plugin"
}, {
"key": "Username",
"display_name": "Username",
"type": "text",
"help_text": "The user to use as part of the demo plugin, created automatically if it does not exist.",
"placeholder": "mammut_bot",
"default": "mammut_bot"
}, {
"key": "MammutAPIURL",
"display_name": "MammutAPIURL",
"type": "text",
"help_text": "The mammut api to talk with.",
"placeholder": "https://api.mammut.io",
"default": "https://api.mammut.io"
}, {
"key": "MammutUserID",
"display_name": "MammutUserID",
"type": "number",
"help_text": "The mammut id in api to talk with.",
"placeholder": "",
"default": 0
}]
}
}