Merge pull request #52 from pieterlexis/add-assignees-to-issues

Add Assignees struct to IssuesPayload as well
This commit is contained in:
Dean Karn
2018-11-21 07:52:15 -08:00
committed by GitHub
+4
View File
@@ -1112,6 +1112,7 @@ type IssueCommentPayload struct {
State string `json:"state"` State string `json:"state"`
Locked bool `json:"locked"` Locked bool `json:"locked"`
Assignee *Assignee `json:"assignee"` Assignee *Assignee `json:"assignee"`
Assignees []*Assignee `json:"assignees"`
Milestone *Milestone `json:"milestone"` Milestone *Milestone `json:"milestone"`
Comments int64 `json:"comments"` Comments int64 `json:"comments"`
CreatedAt time.Time `json:"created_at"` CreatedAt time.Time `json:"created_at"`
@@ -1297,6 +1298,7 @@ type IssuesPayload struct {
State string `json:"state"` State string `json:"state"`
Locked bool `json:"locked"` Locked bool `json:"locked"`
Assignee *Assignee `json:"assignee"` Assignee *Assignee `json:"assignee"`
Assignees []*Assignee `json:"assignees"`
Milestone *Milestone `json:"milestone"` Milestone *Milestone `json:"milestone"`
Comments int64 `json:"comments"` Comments int64 `json:"comments"`
CreatedAt time.Time `json:"created_at"` CreatedAt time.Time `json:"created_at"`
@@ -1410,6 +1412,7 @@ type IssuesPayload struct {
Type string `json:"type"` Type string `json:"type"`
SiteAdmin bool `json:"site_admin"` SiteAdmin bool `json:"site_admin"`
} `json:"sender"` } `json:"sender"`
Assignee *Assignee `json:"assignee"`
} }
// LabelPayload contains the information for GitHub's label hook event // LabelPayload contains the information for GitHub's label hook event
@@ -3169,6 +3172,7 @@ type PullRequestPayload struct {
Type string `json:"type"` Type string `json:"type"`
SiteAdmin bool `json:"site_admin"` SiteAdmin bool `json:"site_admin"`
} `json:"sender"` } `json:"sender"`
Assignee *Assignee `json:"assignee"`
Installation struct { Installation struct {
ID int64 `json:"id"` ID int64 `json:"id"`
} `json:"installation"` } `json:"installation"`