From ef89e9601c0c69edb604d4579e807e561129d6db Mon Sep 17 00:00:00 2001 From: Ben Schumacher Date: Tue, 22 Aug 2023 10:39:27 +0200 Subject: [PATCH] [MM-54183] Remove deprecated Manifest.RequiredConfig field (#24319) --- server/public/model/manifest.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/server/public/model/manifest.go b/server/public/model/manifest.go index c12b3aa94a..415a7e8002 100644 --- a/server/public/model/manifest.go +++ b/server/public/model/manifest.go @@ -188,12 +188,6 @@ type Manifest struct { // Plugins can store any kind of data in Props to allow other plugins to use it. Props map[string]any `json:"props,omitempty" yaml:"props,omitempty"` - - // RequiredConfig defines any required server configuration fields for the plugin to function properly. - // - // Deprecated: The required server configuration fields should be checked using custom code. - // This field will get removed in the next major release. - RequiredConfig *Config `json:"required_configuration,omitempty" yaml:"required_configuration,omitempty"` } type ManifestServer struct {