generated from mattermost/mattermost-plugin-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplugin.json
92 lines (92 loc) · 3.39 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"id": "com.coltonshaw.additional-banner",
"name": "Additional Banner",
"description": "This plugin allows you to add an additional Banner to the Mattermost application.",
"homepage_url": "https://github.com/coltoneshaw/Mattermost-Plugin-Additional-Banner",
"support_url": "https://github.com/coltoneshaw/Mattermost-Plugin-Additional-Banner/issues",
"release_notes_url": "https://github.com/coltoneshaw/Mattermost-Plugin-Additional-Banner/releases",
"icon_path": "assets/starter-template-icon.svg",
"version": "0.1.0",
"min_server_version": "6.0.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"linux-arm64": "server/dist/plugin-linux-arm64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"darwin-arm64": "server/dist/plugin-darwin-arm64",
"windows-amd64": "server/dist/plugin-darwin-amd64.exe"
}
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "",
"footer": "",
"settings": [{
"key": "EnableBanner",
"display_name": "Enable Banner:",
"type": "bool",
"help_text": "Enable or disable the global header",
"placeholder": "",
"default": true
},
{
"key": "BannerText",
"display_name": "Banner Text:",
"type": "text",
"help_text": "Text for the secondary banner. Use markdown to add additional formatting.",
"placeholder": "Text",
"default": null
},
{
"key": "BannerColor",
"display_name": "Banner Color:",
"help_text": "These should be hex or word values for a color. If using text format like '#000000'",
"type": "text",
"placeholder": "#000000",
"default": "#579eff"
},
{
"key": "BannerTextColor",
"display_name": "Banner Text Color:",
"help_text": "These should be hex or word values for a color. If using text format like '#000000'",
"type": "text",
"placeholder": "#000000",
"default": "#fff"
},
{
"key": "EnableFooter",
"display_name": "Enable Footer:",
"type": "bool",
"help_text": "Enable or disable the global footer",
"placeholder": "",
"default": true
},
{
"key": "FooterText",
"display_name": "Footer Text:",
"type": "text",
"help_text": "Text for the secondary banner. Use markdown to add additional formatting.",
"placeholder": "Text",
"default": null
},
{
"key": "Footercolor",
"display_name": "Footer Color:",
"type": "text",
"help_text": "These should be hex or word values for a color. If using text format like '#000000'",
"placeholder": "#000000",
"default": "#579eff"
},
{
"key": "FooterTextColor",
"display_name": "Footer Text Color:",
"help_text": "These should be hex or word values for a color. If using text format like '#000000'",
"type": "text",
"placeholder": "#000000",
"default": "#fff"
}
]
}
}