From 09875fe1603307080f3a4172985c5dca3bd9912d Mon Sep 17 00:00:00 2001 From: Duco van Amstel Date: Sun, 18 Nov 2018 17:55:05 +0000 Subject: Update direct dependencies where possible --- .../mattermost/platform/model/plugins_response.go | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 vendor/github.com/mattermost/platform/model/plugins_response.go (limited to 'vendor/github.com/mattermost/platform/model/plugins_response.go') diff --git a/vendor/github.com/mattermost/platform/model/plugins_response.go b/vendor/github.com/mattermost/platform/model/plugins_response.go deleted file mode 100644 index 74c89af2..00000000 --- a/vendor/github.com/mattermost/platform/model/plugins_response.go +++ /dev/null @@ -1,39 +0,0 @@ -// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -package model - -import ( - "encoding/json" - "io" -) - -type PluginInfo struct { - Manifest - Prepackaged bool `json:"prepackaged"` -} - -type PluginsResponse struct { - Active []*PluginInfo `json:"active"` - Inactive []*PluginInfo `json:"inactive"` -} - -func (m *PluginsResponse) ToJson() string { - b, err := json.Marshal(m) - if err != nil { - return "" - } else { - return string(b) - } -} - -func PluginsResponseFromJson(data io.Reader) *PluginsResponse { - decoder := json.NewDecoder(data) - var m PluginsResponse - err := decoder.Decode(&m) - if err == nil { - return &m - } else { - return nil - } -} -- cgit v1.2.3