-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathplugin.json
More file actions
30 lines (30 loc) · 1.07 KB
/
Copy pathplugin.json
File metadata and controls
30 lines (30 loc) · 1.07 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
{
"id": "set-default-theme",
"name": "Set Default Theme",
"description": "Apply a custom theme to all users when they create their account.",
"homepage_url": "https://github.com/mickmister/mattermost-plugin-default-theme",
"support_url": "https://github.com/mickmister/mattermost-plugin-default-theme/issues",
"release_notes_url": "https://github.com/mickmister/mattermost-plugin-default-theme/issues/releases/tag/v0.1.0",
"version": "0.1.0",
"min_server_version": "5.26.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": "",
"footer": "",
"settings": [
{
"key": "CustomTheme",
"display_name": "Default Theme",
"type": "longtext",
"help_text": "Custom Theme JSON",
"default": ""
}
]
}
}