-
Notifications
You must be signed in to change notification settings - Fork 23
/
plugin.json
27 lines (27 loc) · 1022 Bytes
/
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
{
"id": "com.mattermost.custom-attributes",
"name": "Custom User Attributes",
"description": "Add custom user attributes to the Mattermost user profile popover.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-custom-attributes",
"support_url": "https://github.com/mattermost/mattermost-plugin-custom-attributes/issues",
"min_server_version": "5.37.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"linux-arm64": "server/dist/plugin-linux-arm64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"darwin-arm64": "server/dist/plugin-darwin-arm64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"settings": [{
"key": "CustomAttributes",
"type": "custom",
"display_name": "Custom Attributes:"
}]
}
}