2017-08-16 23:37:37 +02:00
|
|
|
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
2016-05-21 14:14:08 +02:00
|
|
|
// See License.txt for license information.
|
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
|
|
|
type InitialLoad struct {
|
2016-11-12 22:00:53 +01: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 14:14:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (me *InitialLoad) ToJson() string {
|
2018-11-18 18:55:05 +01:00
|
|
|
b, _ := json.Marshal(me)
|
|
|
|
return string(b)
|
2016-05-21 14:14:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func InitialLoadFromJson(data io.Reader) *InitialLoad {
|
2018-11-18 18:55:05 +01:00
|
|
|
var o *InitialLoad
|
|
|
|
json.NewDecoder(data).Decode(&o)
|
|
|
|
return o
|
2016-05-21 14:14:08 +02:00
|
|
|
}
|