e3ae682eea
* initial commit for displaying board statistics * lint fixes * i18n-extract, remove log entries, cleanup * more lint fixes * add check for standalone mode * update tests due to change to NotImplemented * lint fix * revert removing empty comment lines Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
15 lines
454 B
Go
15 lines
454 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
package model
|
|
|
|
// BoardsStatistics is the representation of the statistics for the Boards server
|
|
// swagger:model
|
|
type BoardsStatistics struct {
|
|
// The maximum number of cards on the server
|
|
// required: true
|
|
Boards int `json:"board_count"`
|
|
|
|
// The maximum number of cards on the server
|
|
// required: true
|
|
Cards int `json:"card_count"`
|
|
}
|