2021-05-24 19:06:11 +02:00
|
|
|
// This file is automatically generated. Do not modify it manually.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-09-15 15:01:05 +02:00
|
|
|
"encoding/json"
|
2021-05-24 19:06:11 +02:00
|
|
|
"strings"
|
|
|
|
|
2021-08-24 12:13:58 +02:00
|
|
|
"github.com/mattermost/mattermost-server/v6/model"
|
2021-05-24 19:06:11 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
var manifest *model.Manifest
|
|
|
|
|
|
|
|
const manifestStr = `
|
|
|
|
{
|
|
|
|
"id": "focalboard",
|
2021-08-31 12:01:17 +02:00
|
|
|
"name": "Mattermost Boards",
|
|
|
|
"description": "The Mattermost Boards plugin",
|
2021-07-06 19:45:51 +02:00
|
|
|
"homepage_url": "https://github.com/mattermost/focalboard",
|
|
|
|
"support_url": "https://github.com/mattermost/focalboard/issues",
|
|
|
|
"release_notes_url": "https://github.com/mattermost/focalboard/releases",
|
2021-05-24 19:06:11 +02:00
|
|
|
"icon_path": "assets/starter-template-icon.svg",
|
2022-07-18 20:05:59 +02:00
|
|
|
"version": "7.3.0",
|
2022-08-08 22:55:47 +02:00
|
|
|
"min_server_version": "7.2.0",
|
2021-05-24 19:06:11 +02:00
|
|
|
"server": {
|
|
|
|
"executables": {
|
|
|
|
"darwin-amd64": "server/dist/plugin-darwin-amd64",
|
2021-11-26 09:44:26 +01:00
|
|
|
"darwin-arm64": "server/dist/plugin-darwin-arm64",
|
2021-08-24 12:13:58 +02:00
|
|
|
"linux-amd64": "server/dist/plugin-linux-amd64",
|
2021-11-26 09:44:26 +01:00
|
|
|
"linux-arm64": "server/dist/plugin-linux-arm64",
|
2021-05-24 19:06:11 +02:00
|
|
|
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
|
|
|
|
},
|
|
|
|
"executable": ""
|
|
|
|
},
|
|
|
|
"webapp": {
|
|
|
|
"bundle_path": "webapp/dist/main.js"
|
|
|
|
},
|
|
|
|
"settings_schema": {
|
2021-09-16 21:31:02 +02:00
|
|
|
"header": "",
|
2021-05-24 19:06:11 +02:00
|
|
|
"footer": "",
|
2021-09-16 21:31:02 +02:00
|
|
|
"settings": [
|
|
|
|
{
|
|
|
|
"key": "EnablePublicSharedBoards",
|
|
|
|
"display_name": "Enable Publicly-Shared Boards:",
|
|
|
|
"type": "bool",
|
|
|
|
"help_text": "This allows board editors to share boards that can be accessed by anyone with the link.",
|
|
|
|
"placeholder": "",
|
|
|
|
"default": false
|
|
|
|
}
|
|
|
|
]
|
2021-05-24 19:06:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
func init() {
|
2021-09-15 15:01:05 +02:00
|
|
|
_ = json.NewDecoder(strings.NewReader(manifestStr)).Decode(&manifest)
|
2021-05-24 19:06:11 +02:00
|
|
|
}
|