mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-13 03:20:26 +00:00
15 lines
507 B
Go
15 lines
507 B
Go
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||
|
// See LICENSE.txt for license information.
|
||
|
|
||
|
package model
|
||
|
|
||
|
type InitialLoad struct {
|
||
|
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"`
|
||
|
}
|