-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
65 lines (65 loc) · 2.18 KB
/
plugin.json
File metadata and controls
65 lines (65 loc) · 2.18 KB
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
{
"id": "syncplay",
"name": "Syncplay",
"description": "",
"homepage_url": "https://github.com/Shadowsith/mattermost-plugin-syncplay",
"support_url": "https://github.com/Shadowsith/mattermost-plugin-syncplay",
"release_notes_url": "",
"version": "1.1.0",
"min_server_version": "6.2.1",
"server": {
"executables": {
"linux-amd64": "server/plugin-linux-amd64",
"darwin-amd64": "server/plugin-darwin-amd64",
"windows-amd64": "server/plugin-windows-amd64.exe"
}
},
"settings_schema": {
"settings": [
{
"key": "url",
"display_name": "Syncplay Webhook Url",
"type": "text",
"help_text": "Synplay webhook url. Please add http or https prefix",
"placeholder": "",
"default": ""
},
{
"key": "port",
"display_name": "Webhook Port",
"type": "number",
"help_text": "Syncplay webhook port",
"placeholder": "8080",
"default": 8080
},
{
"key": "default_room",
"display_name": "Default room",
"type": "text",
"help_text": "Set default syncplay room",
"default": ""
},
{
"key": "chat_response",
"display_name": "Chat response",
"type": "bool",
"help_text": "Enable or disable chat response after command",
"default": "true"
},
{
"key": "enable_bot_user",
"display_name": "Enable bot user",
"type": "bool",
"help_text": "Enable or disable if a bot user should answer to the /syncplay command",
"default": "false"
},
{
"key": "bot_user",
"display_name": "Bot username",
"type": "text",
"help_text": "Set bot user name (case sensetive), bot must exist!",
"default": ""
}
]
}
}