forked from matterpoll/matterpoll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
37 lines (37 loc) · 1.36 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
{
"id": "com.github.matterpoll.matterpoll",
"name": "Matterpoll",
"description": "Polling feature for Mattermost's custom slash command",
"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.3.0",
"icon_path": "assets/logo_dark.svg",
"version": "1.3.0",
"min_server_version": "5.20.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": {
"settings": [{
"key": "Trigger",
"display_name": "Trigger Word",
"type": "text",
"help_text": "Trigger Word must be unique, and cannot begin with a slash or 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 mobile app.",
"default": false
}],
"footer": "* To report an issue, make a suggestion or a contribution, [check the repository](https://github.com/matterpoll/matterpoll)."
}
}