This repository has been archived by the owner on Aug 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
plugin.json
56 lines (56 loc) · 1.78 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
{
"id": "kopanowebmeetings",
"name": "Kopano Web Meetings",
"description": "Kopano Web Meetings for Mattermost.",
"version": "0.0.0-no-proper-build",
"backend": {
"executable": "kwmmmplugind"
},
"webapp": {
"bundle_path": "/webapp/kopanowebmeetings_bundle.js"
},
"settings_schema": {
"settings": [
{
"key": "KWMServerURL",
"display_name": "Kopano Web Meetings Server URL",
"type": "text",
"help_text": "The URL of Kopano Web Meetings Server."
},
{
"key": "KWMServerInternalURL",
"display_name": "Kopano Web Meetings Server secure internal URL",
"type": "text",
"help_text": "The URL of Kopano Web Meetings Server used for internal connections. This URL should be private and/or firewalled so it can only be accessed from Mattermost."
},
{
"key": "StunURI",
"display_name": "STUN server URI",
"type": "text",
"default": "stun:stun.l.google.com:19302",
"placeholder": "stun:your.stun.server.local:port",
"help_text": "The STUN server URI. Use space to split multiple."
},
{
"key": "TurnURI",
"display_name": "TURN server URI",
"type": "text",
"placeholder": "turn:your.turn.server.local:port",
"help_text": "The TURN server URI. Use space to split multiple."
},
{
"key": "TurnUsername",
"display_name": "TURN user name",
"type": "text",
"default": "mattermost-kwm-user",
"help_text": "The username to send to TURN server."
},
{
"key": "TurnSharedKey",
"display_name": "TURN shared secret",
"type": "text",
"help_text": "The shared secret as known to the TURN server to create credentials."
}
]
}
}