eceb406535
This reverts commit 9fac8f476e
.
22 lines
499 B
Go
22 lines
499 B
Go
package model
|
|
|
|
const CategoryBoardsSortOrderGap = 10
|
|
|
|
// 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"`
|
|
|
|
// The relative sort order of this board in its category
|
|
// required: true
|
|
SortOrder int `json:"sortOrder"`
|
|
}
|
|
|
|
type BoardCategoryWebsocketData struct {
|
|
BoardID string `json:"boardID"`
|
|
CategoryID string `json:"categoryID"`
|
|
}
|