45 lines
1.2 KiB
Go
Generated
45 lines
1.2 KiB
Go
Generated
// This file is automatically generated. Do not modify it manually.
|
|
|
|
package main
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/mattermost/mattermost-server/v5/model"
|
|
)
|
|
|
|
var manifest *model.Manifest
|
|
|
|
const manifestStr = `
|
|
{
|
|
"id": "focalboard",
|
|
"name": "Focalboard",
|
|
"description": "This provides focalboard integration with mattermost.",
|
|
"homepage_url": "https://github.com/mattermost/focalboard",
|
|
"support_url": "https://github.com/mattermost/focalboard/issues",
|
|
"release_notes_url": "https://github.com/mattermost/focalboard/releases",
|
|
"icon_path": "assets/starter-template-icon.svg",
|
|
"version": "0.8.1",
|
|
"min_server_version": "5.37.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"
|
|
},
|
|
"executable": ""
|
|
},
|
|
"webapp": {
|
|
"bundle_path": "webapp/dist/main.js"
|
|
},
|
|
"settings_schema": {
|
|
"header": "For additional setup steps, please [see here](https://focalboard.com/fwlink/plugin-setup.html)",
|
|
"footer": "",
|
|
"settings": []
|
|
}
|
|
}
|
|
`
|
|
|
|
func init() {
|
|
manifest = model.ManifestFromJson(strings.NewReader(manifestStr))
|
|
}
|