-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
64 lines (64 loc) · 2.28 KB
/
plugin.json
File metadata and controls
64 lines (64 loc) · 2.28 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
{
"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"
}
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"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 \nUser IDs can be found by navigating to **System Console** > **User Management**. After clicking into a user's name, their ID is on the right-hand side of the blue header."
},
{
"key": "AdminLogLevel",
"display_name": "Copy plugin logs to admins, 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
}
]
}
}