manifest.go 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // This file is automatically generated. Do not modify it manually.
  2. package main
  3. import (
  4. "strings"
  5. "github.com/mattermost/mattermost-server/v5/model"
  6. )
  7. var manifest *model.Manifest
  8. const manifestStr = `
  9. {
  10. "id": "com.girishm.op-mattermost-plugin",
  11. "name": "op-mattermost-plugin",
  12. "description": "OpenProject plugin for Mattermost",
  13. "homepage_url": "https://github.com/girish17/op-mattermost-plugin",
  14. "support_url": "https://github.com/girish17/op-mattermost-plugin/issues",
  15. "release_notes_url": "https://github.com/girish17/op-mattermost-plugin/releases/tag/v0.1.0",
  16. "icon_path": "assets/op_logo.svg",
  17. "version": "0.1.0",
  18. "min_server_version": "5.12.0",
  19. "server": {
  20. "executables": {
  21. "linux-amd64": "server/dist/plugin-linux-amd64",
  22. "darwin-amd64": "server/dist/plugin-darwin-amd64",
  23. "windows-amd64": "server/dist/plugin-windows-amd64.exe"
  24. },
  25. "executable": ""
  26. },
  27. "webapp": {
  28. "bundle_path": "webapp/dist/main.js"
  29. },
  30. "settings_schema": {
  31. "header": "",
  32. "footer": "",
  33. "settings": []
  34. }
  35. }
  36. `
  37. func init() {
  38. manifest = model.ManifestFromJson(strings.NewReader(manifestStr))
  39. }