summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattermost/platform/model/team_stats.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mattermost/platform/model/team_stats.go')
-rw-r--r--vendor/github.com/mattermost/platform/model/team_stats.go35
1 files changed, 0 insertions, 35 deletions
diff --git a/vendor/github.com/mattermost/platform/model/team_stats.go b/vendor/github.com/mattermost/platform/model/team_stats.go
deleted file mode 100644
index e94ed37b..00000000
--- a/vendor/github.com/mattermost/platform/model/team_stats.go
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-package model
-
-import (
- "encoding/json"
- "io"
-)
-
-type TeamStats struct {
- TeamId string `json:"team_id"`
- TotalMemberCount int64 `json:"total_member_count"`
- ActiveMemberCount int64 `json:"active_member_count"`
-}
-
-func (o *TeamStats) ToJson() string {
- b, err := json.Marshal(o)
- if err != nil {
- return ""
- } else {
- return string(b)
- }
-}
-
-func TeamStatsFromJson(data io.Reader) *TeamStats {
- decoder := json.NewDecoder(data)
- var o TeamStats
- err := decoder.Decode(&o)
- if err == nil {
- return &o
- } else {
- return nil
- }
-}