-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.json
More file actions
65 lines (64 loc) · 2.57 KB
/
plugin.json
File metadata and controls
65 lines (64 loc) · 2.57 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": "skype4business",
"name": "Skype for Business",
"description": "Skype for Business plugin for Mattermost.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-skype4business",
"support_url": "https://github.com/mattermost/mattermost-plugin-skype4business/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-skype4business/releases/tag/v0.2.0",
"icon_path": "assets/profile.svg",
"version": "0.2.0",
"min_server_version": "5.10.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": "productType",
"display_name": "Skype for Business Product Type:",
"type": "radio",
"help_text": "The product type of your Skype for Business instance.",
"default": "Server",
"options": [{
"display_name": "Server",
"value": "server"
}, {
"display_name": "Online",
"value": "online"
}]
},
{
"key": "Username",
"display_name": "Skype for Business Bot Username:",
"type": "text",
"help_text": "Username of your selected bot account. We strongly recommend using a dedicated bot account for this plugin, rather than an existing Skype for Business user account. Only required for Skype for Business Server."
},
{
"key": "Password",
"display_name": "Skype for Business Bot Password:",
"type": "text",
"help_text": "Password of your selected bot account. Only required for Skype for Business Server."
},
{
"key": "Domain",
"display_name": "Server Domain:",
"type": "text",
"help_text": "The domain of your Skype for Business server instance. For example: contoso.com. Only required for Skype for Business Server."
},
{
"key": "ClientId",
"display_name": "Application ID:",
"type": "text",
"help_text": "Application ID from the Azure Active Directory. Only required for Skype for Business Online. Use this URL to configure the plugin in Azure Active Directory: ```https://SITEURL/plugins/skype4business/api/v1/auth_redirect```."
}
],
"footer": "To report an issue, make a suggestion, or submit a contribution, [check the repository](https://github.com/mattermost/mattermost-plugin-skype4business)."
}
}