generated from mattermost/mattermost-plugin-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 35
/
plugin.json
98 lines (98 loc) · 3.73 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
98
{
"id": "com.mattermost.gcal",
"name": "Google Calendar",
"description": "Google Calendar Integration",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-google-calendar",
"support_url": "https://github.com/mattermost/mattermost-plugin-google-calendar/issues",
"icon_path": "assets/profile-gcal.svg",
"min_server_version": "6.3.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": ""
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"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": "EncryptionKey",
"display_name": "Encryption key",
"type": "generated",
"help_text": "**Required**: The encryption key used to store data in the database. If this is regenerated all user authentication data will be lost and users will need to reconnect again.",
"secret": true
},
{
"key": "OAuth2ClientId",
"display_name": "Google Application Client ID:",
"type": "text",
"help_text": "Google Auth Client ID",
"placeholder": "",
"default": ""
},
{
"key": "OAuth2ClientSecret",
"display_name": "Google Client Secret:",
"type": "text",
"help_text": "Google Auth Client Secret.",
"placeholder": "",
"default": "",
"secret": true
}
]
}
}