2017-08-16 21:37:37 +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.
|
2016-04-10 21:39:38 +00:00
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
|
|
|
type SecurityBulletin struct {
|
|
|
|
Id string `json:"id"`
|
|
|
|
AppliesToVersion string `json:"applies_to_version"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type SecurityBulletins []SecurityBulletin
|
|
|
|
|
2021-10-16 22:47:22 +00:00
|
|
|
func (sb *SecurityBulletin) ToJson() string {
|
|
|
|
b, _ := json.Marshal(sb)
|
2018-11-18 17:55:05 +00:00
|
|
|
return string(b)
|
2016-04-10 21:39:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func SecurityBulletinFromJson(data io.Reader) *SecurityBulletin {
|
2018-11-18 17:55:05 +00:00
|
|
|
var o *SecurityBulletin
|
|
|
|
json.NewDecoder(data).Decode(&o)
|
|
|
|
return o
|
2016-04-10 21:39:38 +00:00
|
|
|
}
|
|
|
|
|
2021-10-16 22:47:22 +00:00
|
|
|
func (sb SecurityBulletins) ToJson() string {
|
|
|
|
b, err := json.Marshal(sb)
|
|
|
|
if err != nil {
|
2016-04-10 21:39:38 +00:00
|
|
|
return "[]"
|
|
|
|
}
|
2021-10-16 22:47:22 +00:00
|
|
|
return string(b)
|
2016-04-10 21:39:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func SecurityBulletinsFromJson(data io.Reader) SecurityBulletins {
|
|
|
|
var o SecurityBulletins
|
2018-11-18 17:55:05 +00:00
|
|
|
json.NewDecoder(data).Decode(&o)
|
|
|
|
return o
|
2016-04-10 21:39:38 +00:00
|
|
|
}
|