mirror of
https://github.com/mattermost/focalboard.git
synced 2024-12-24 13:43:12 +02:00
154c344077
* Fix #2800. Add missing Swagger docs * Add note that timestamps are in miliseconds * Fix merge, update docs.
17 lines
348 B
Go
17 lines
348 B
Go
package model
|
|
|
|
// CategoryBoards is a board category and associated boards
|
|
// swagger:model
|
|
type CategoryBoards struct {
|
|
Category
|
|
|
|
// The IDs of boards in this category
|
|
// required: true
|
|
BoardIDs []string `json:"boardIDs"`
|
|
}
|
|
|
|
type BoardCategoryWebsocketData struct {
|
|
BoardID string `json:"boardID"`
|
|
CategoryID string `json:"categoryID"`
|
|
}
|