forked from mattermost/mattermost-plugin-mscalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
97 lines (97 loc) · 3.68 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
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
{
"id": "com.mattermost.mscalendar",
"name": "Microsoft Calendar",
"description": "Microsoft Calendar Integration",
"homepage_url": "https://mattermost.com/pl/mattermost-plugin-mscalendar",
"support_url": "https://github.com/mattermost/mattermost-plugin-mscalendar/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-mscalendar/releases/tag/v1.3.4",
"icon_path": "assets/profile-mscalendar.svg",
"version": "1.3.4",
"min_server_version": "8.1.0",
"server": {
"executables": {
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"darwin-arm64": "server/dist/plugin-darwin-arm64",
"linux-amd64": "server/dist/plugin-linux-amd64",
"linux-arm64": "server/dist/plugin-linux-arm64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
},
"executable": ""
},
"settings_schema": {
"header": "",
"footer": "",
"settings": [
{
"key": "AdminUserIDs",
"display_name": "Admin User IDs:",
"type": "text",
"help_text": "List of users authorized to administer the plugin in addition to the System Admins. Must be a comma-separated list of user IDs.\n \n User IDs can be found in **System Console \u003e User Management \u003e Users**. Select the user's name, and the ID is displayed in the top-right corner of the banner.",
"placeholder": "",
"default": null
},
{
"key": "AdminLogLevel",
"display_name": "Copy plugin logs to admins, as bot messages:",
"type": "dropdown",
"help_text": "Select the log level.",
"placeholder": "",
"default": "none",
"options": [
{
"display_name": "None",
"value": "none"
},
{
"display_name": "Debug",
"value": "debug"
},
{
"display_name": "Info",
"value": "info"
},
{
"display_name": "Warning",
"value": "warn"
},
{
"display_name": "Error",
"value": "error"
}
]
},
{
"key": "AdminLogVerbose",
"display_name": "Display full context for each admin log message:",
"type": "bool",
"help_text": "",
"placeholder": "",
"default": false
},
{
"key": "OAuth2Authority",
"display_name": "Azure Directory (tenant) ID:",
"type": "text",
"help_text": "Directory (tenant) ID.",
"placeholder": "",
"default": null
},
{
"key": "OAuth2ClientId",
"display_name": "Azure Application (client) ID:",
"type": "text",
"help_text": "Microsoft Office Client ID.",
"placeholder": "",
"default": ""
},
{
"key": "OAuth2ClientSecret",
"display_name": "Microsoft Office Client Secret:",
"type": "text",
"help_text": "Microsoft Office Client Secret.",
"placeholder": "",
"default": ""
}
]
}
}