generated from mattermost/mattermost-plugin-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 10
/
plugin.json
61 lines (61 loc) · 2.2 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
{
"id": "com.mattermost.solar-lottery",
"name": "Solar Lottery Team Scheduler",
"description": "Solar Lottery team scheduler.",
"version": "0.1.0",
"min_server_version": "5.16.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"
}
},
"settings_schema": {
"header": "",
"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 are located in **System Console > User Management**. Select the user's name to view their ID on the right-hand side of the blue header."
},
{
"key": "AdminLogLevel",
"display_name": "Copy plugin logs to System Admins, sent as bot messages:",
"type": "dropdown",
"help_text": "Select the log level.",
"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": "",
"default": false
}
]
}
}