2018-02-08 23:11:04 +00:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
2020-08-09 22:29:54 +00:00
|
|
|
// See LICENSE.txt for license information.
|
2018-02-08 23:11:04 +00:00
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
|
|
|
type PluginInfo struct {
|
|
|
|
Manifest
|
|
|
|
}
|
|
|
|
|
|
|
|
type PluginsResponse struct {
|
|
|
|
Active []*PluginInfo `json:"active"`
|
|
|
|
Inactive []*PluginInfo `json:"inactive"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *PluginsResponse) ToJson() string {
|
2018-11-18 17:55:05 +00:00
|
|
|
b, _ := json.Marshal(m)
|
|
|
|
return string(b)
|
2018-02-08 23:11:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func PluginsResponseFromJson(data io.Reader) *PluginsResponse {
|
2018-11-18 17:55:05 +00:00
|
|
|
var m *PluginsResponse
|
|
|
|
json.NewDecoder(data).Decode(&m)
|
|
|
|
return m
|
2018-02-08 23:11:04 +00:00
|
|
|
}
|