154c344077
* Fix #2800. Add missing Swagger docs * Add note that timestamps are in miliseconds * Fix merge, update docs.
16 lines
348 B
Go
16 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"`
|
|
}
|