generated from mattermost/mattermost-plugin-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathplugin.json
57 lines (57 loc) · 1.98 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
48
49
50
51
52
53
54
55
56
57
{
"id": "com.mattermost.docup",
"name": "Doc Up",
"description": "This plugin makes it easy to mark messages in Mattermost for documentation. Known as doc'ing up.",
"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"
}
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "",
"footer": "",
"settings": [
{
"key": "GitHubAPIKey",
"display_name": "GitHub API Key:",
"type": "text",
"help_text": "GitHub API Key used to create issues in repositories."
},
{
"key": "AdminRepository",
"display_name": "Admin Repository:",
"type": "text",
"placeholder": "owner/repo",
"help_text": "Repository for admin documentation."
},
{
"key": "DeveloperRepository",
"display_name": "Developer Repository:",
"type": "text",
"placeholder": "owner/repo",
"help_text": "Repository for developer documentation."
},
{
"key": "HandbookRepository",
"display_name": "Handbook Repository:",
"type": "text",
"placeholder": "owner/repo",
"help_text": "Repository for company handbook documentation."
},
{
"key": "Labels",
"display_name": "Labels to Add:",
"type": "text",
"placeholder": "label1,label2",
"help_text": "Comma separated list of labels to add to issues when they are created."
}
]
}
}