Add jobs property to build model

This commit is contained in:
Steve Gray
2016-11-03 05:55:35 +10:00
committed by GitHub
parent fd620bd5e8
commit 68a95d523c

View File

@@ -27,6 +27,7 @@ type Build struct {
Link string `json:"link_url" meddler:"build_link"` Link string `json:"link_url" meddler:"build_link"`
Signed bool `json:"signed" meddler:"build_signed"` Signed bool `json:"signed" meddler:"build_signed"`
Verified bool `json:"verified" meddler:"build_verified"` Verified bool `json:"verified" meddler:"build_verified"`
Jobs []*Job `json:"jobs,omitempty" meddler:"-"`
} }
type BuildGroup struct { type BuildGroup struct {