2020-08-09 22:29:54 +00:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
|
|
// See LICENSE.txt for license information.
|
2016-05-21 12:14:08 +00:00
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
|
|
|
type InitialLoad struct {
|
2016-11-12 21:00:53 +00:00
|
|
|
User *User `json:"user"`
|
|
|
|
TeamMembers []*TeamMember `json:"team_members"`
|
|
|
|
Teams []*Team `json:"teams"`
|
|
|
|
Preferences Preferences `json:"preferences"`
|
|
|
|
ClientCfg map[string]string `json:"client_cfg"`
|
|
|
|
LicenseCfg map[string]string `json:"license_cfg"`
|
|
|
|
NoAccounts bool `json:"no_accounts"`
|
2016-05-21 12:14:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (me *InitialLoad) ToJson() string {
|
2018-11-18 17:55:05 +00:00
|
|
|
b, _ := json.Marshal(me)
|
|
|
|
return string(b)
|
2016-05-21 12:14:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func InitialLoadFromJson(data io.Reader) *InitialLoad {
|
2018-11-18 17:55:05 +00:00
|
|
|
var o *InitialLoad
|
|
|
|
json.NewDecoder(data).Decode(&o)
|
|
|
|
return o
|
2016-05-21 12:14:08 +00:00
|
|
|
}
|