-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
107 lines (107 loc) · 4.61 KB
/
Copy pathplugin.json
File metadata and controls
107 lines (107 loc) · 4.61 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"id": "digitalsamba",
"name": "DigitalSamba",
"description": "DigitalSamba video conferencing plugin for Mattermost.",
"version": "1.0.6",
"homepage_url": "https://github.com/mattermost-community/mattermost-plugin-digitalsamba",
"support_url": "https://github.com/mattermost-community/mattermost-plugin-digitalsamba/issues",
"icon_path": "assets/icon.svg",
"min_server_version": "5.2.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": "DigitalSambaAPIKey",
"display_name": "DigitalSamba API Key:",
"type": "text",
"help_text": "Your DigitalSamba API key. Get one at https://dashboard.digitalsamba.com",
"placeholder": "ds_live_...",
"secret": true
},
{
"key": "DigitalSambaDashboardURL",
"display_name": "DigitalSamba Dashboard URL:",
"type": "text",
"help_text": "The URL for your DigitalSamba dashboard API endpoint.",
"placeholder": "https://api.digitalsamba.com",
"default": "https://api.digitalsamba.com"
},
{
"key": "DigitalSambaEmbedded",
"display_name": "Embed DigitalSamba video inside Mattermost:",
"type": "bool",
"help_text": "When true, DigitalSamba video is embedded as a floating window inside Mattermost by default. Users can override this setting with '/digitalsamba settings'.",
"default": true
},
{
"key": "DigitalSambaShowPrejoinPage",
"display_name": "Show pre-join page:",
"type": "bool",
"help_text": "When false, pre-join page will not be displayed when DigitalSamba is embedded inside Mattermost.",
"default": true
},
{
"key": "DigitalSambaNamingScheme",
"display_name": "Meeting Names:",
"type": "radio",
"help_text": "Select how meeting names are generated by default. Users can override this setting with '/digitalsamba settings'.",
"default": "words",
"options": [
{
"display_name": "Random English words in title case (e.g. PlayfulDragonsObserveCuriously)",
"value": "words"
},
{
"display_name": "UUID (universally unique identifier)",
"value": "uuid"
},
{
"display_name": "Mattermost context specific names. Combination of team name, channel name, and random text in Public and Private channels; personal meeting name in Direct and Group Message channels.",
"value": "mattermost"
},
{
"display_name": "Allow user to select meeting name",
"value": "ask"
}
]
},
{
"key": "DigitalSambaRoomExpiry",
"display_name": "Room Expiry Time (minutes):",
"type": "number",
"help_text": "The number of minutes after which an unused room expires. Minimum is 30 minutes. Set to 0 for no expiry.",
"default": 120
},
{
"key": "DigitalSambaMaxParticipants",
"display_name": "Maximum Participants per Room:",
"type": "number",
"help_text": "Maximum number of participants allowed in a room (up to 2000).",
"default": 100
},
{
"key": "DigitalSambaEnableRecording",
"display_name": "Enable Recording:",
"type": "bool",
"help_text": "Allow meeting hosts to record meetings.",
"default": false
},
{
"key": "DigitalSambaEnableBreakoutRooms",
"display_name": "Enable Breakout Rooms:",
"type": "bool",
"help_text": "Allow meeting hosts to create breakout rooms.",
"default": false
}
]
}
}