MM-54505: re-enable remote marketplace functionality (#24561)

Этот коммит содержится в:
Caleb Roseland
2023-09-15 12:17:53 -05:00
коммит произвёл GitHub
родитель 64fabbeed3
Коммит 9a3b503169
6 изменённых файлов: 17 добавлений и 140 удалений

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

@@ -552,7 +552,7 @@ func (a *App) GetPlugins() (*model.PluginsResponse, *model.AppError) {
func (a *App) GetMarketplacePlugins(filter *model.MarketplacePluginFilter) ([]*model.MarketplacePlugin, *model.AppError) {
plugins := map[string]*model.MarketplacePlugin{}
if *a.Config().PluginSettings.EnableRemoteMarketplace && !a.Config().FeatureFlags.StreamlinedMarketplace && !filter.LocalOnly {
if *a.Config().PluginSettings.EnableRemoteMarketplace && !filter.LocalOnly {
p, appErr := a.getRemotePlugins()
if appErr != nil {
return nil, appErr