diff options
Diffstat (limited to 'dashboard/dashapi/dashapi.go')
| -rw-r--r-- | dashboard/dashapi/dashapi.go | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go index 833dd099f..8b93f0ae2 100644 --- a/dashboard/dashapi/dashapi.go +++ b/dashboard/dashapi/dashapi.go @@ -122,8 +122,13 @@ func (dash *Dashboard) BuilderPoll(manager string) (*BuilderPollResp, error) { // ID must match JobPollResp.ID. type JobPollReq struct { - PatchTestManagers []string - BisectManagers []string + Managers map[string]ManagerJobs +} + +type ManagerJobs struct { + TestPatches bool + BisectCause bool + BisectFix bool } type JobPollResp struct { |
