forked from matterpoll/matterpoll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
48 lines (48 loc) · 2 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
{
"id": "com.github.matterpoll.matterpoll",
"name": "Matterpoll",
"description": "Create polls and surveys directly within Mattermost.",
"homepage_url": "https://github.com/matterpoll/matterpoll",
"support_url": "https://github.com/matterpoll/matterpoll/issues",
"release_notes_url": "https://github.com/matterpoll/matterpoll/releases/tag/v1.7.0",
"icon_path": "assets/logo_dark.svg",
"version": "1.7.0",
"min_server_version": "8.1.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-windows-amd64.exe"
}
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"settings": [
{
"key": "Trigger",
"display_name": "Trigger Word:",
"type": "text",
"help_text": "Trigger Word must be unique, cannot begin with a slash, and cannot contain any spaces.",
"default": "poll"
},
{
"key": "ExperimentalUI",
"display_name": "Experimental UI:",
"type": "bool",
"help_text": "When true, Matterpoll will render poll posts with a rich UI. The rich UI is not available on the mobile app.",
"default": false
},
{
"key": "default_settings",
"display_name": "Default Settings",
"type": "custom",
"help_text": "Settings will be pre-selected in 'Create Poll' dialog. Settings will not be applied to `/poll` command."
}
],
"footer": "* To report an issue, make a suggestion, or submit a contribution, [check the repository](https://github.com/matterpoll/matterpoll)."
}
}