Unverified Commit a177ae6d authored by Sander van Harmelen's avatar Sander van Harmelen Committed by GitHub

Merge pull request #549 from xanzy/svh/b-board-issues

Fix the board list label field
parents d85a1530 15827ef9
...@@ -48,9 +48,9 @@ func (b IssueBoard) String() string { ...@@ -48,9 +48,9 @@ func (b IssueBoard) String() string {
// //
// GitLab API docs: https://docs.gitlab.com/ce/api/boards.html // GitLab API docs: https://docs.gitlab.com/ce/api/boards.html
type BoardList struct { type BoardList struct {
ID int `json:"id"` ID int `json:"id"`
Labels []*Label `json:"labels"` Label *Label `json:"label"`
Position int `json:"position"` Position int `json:"position"`
} }
func (b BoardList) String() string { func (b BoardList) String() string {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment