Respect HomepageURL in manifest for local plugins (#13595)

* Respect HomepageURL in manifest for local plugins

* Add documentation for updating the plugin signatures
Этот коммит содержится в:
Ben Schumacher
2020-01-17 09:09:58 +01:00
коммит произвёл GitHub
родитель 566f28be0a
Коммит 3491c3abb2
8 изменённых файлов: 43 добавлений и 21 удалений

Просмотреть файл

@@ -598,8 +598,9 @@ func (a *App) mergeLocalPlugins(remoteMarketplacePlugins map[string]*model.Marke
remoteMarketplacePlugins[plugin.Manifest.Id] = &model.MarketplacePlugin{
BaseMarketplacePlugin: &model.BaseMarketplacePlugin{
Labels: labels,
Manifest: plugin.Manifest,
HomepageURL: plugin.Manifest.HomepageURL,
Labels: labels,
Manifest: plugin.Manifest,
},
InstalledVersion: plugin.Manifest.Version,
}