forked from mattermost-community/mattermost-plugin-todo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
35 lines (35 loc) · 1.25 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
{
"id": "com.mattermost.plugin-todo",
"name": "Todo",
"description": "This plugin makes it easy to keep track of Todo issues and get daily reminders.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-todo",
"support_url": "https://github.com/mattermost/mattermost-plugin-todo/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-todo/releases/tag/v0.7.0",
"version": "0.7.0",
"min_server_version": "6.5.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"
},
"executable": ""
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "",
"footer": "",
"settings": [
{
"key": "hide_team_sidebar",
"display_name": "Hide team sidebar buttons:",
"type": "bool",
"help_text": "When true, the buttons in the team sidebar on the left toolbar will be hidden.",
"placeholder": "",
"default": null
}
]
}
}