Modified assignees field in issue struct for preperation of go-gitea/gitea#3705 (#99)

* Modified assignees field in issue struct for preperation of go-gitea/gitea#1884

* Modified assignees field in pr struct for preperation of go-gitea/gitea#1884

* Re-Added `Assignee`

* Added missing `assignees`

* fmt
This commit is contained in:
kolaente 2018-03-22 15:32:16 +01:00 committed by Lunny Xiao
parent 39c609e903
commit 92585b27a0
2 changed files with 23 additions and 19 deletions

View File

@ -91,6 +91,7 @@ type CreateIssueOption struct {
Body string `json:"body"`
// username of assignee
Assignee string `json:"assignee"`
Assignees []string `json:"assignees"`
// milestone id
Milestone int64 `json:"milestone"`
// list of label ids
@ -114,6 +115,7 @@ type EditIssueOption struct {
Title string `json:"title"`
Body *string `json:"body"`
Assignee *string `json:"assignee"`
Assignees []string `json:"assignees"`
Milestone *int64 `json:"milestone"`
State *string `json:"state"`
}

View File

@ -85,6 +85,7 @@ type CreatePullRequestOption struct {
Title string `json:"title" binding:"Required"`
Body string `json:"body"`
Assignee string `json:"assignee"`
Assignees []string `json:"assignees"`
Milestone int64 `json:"milestone"`
Labels []int64 `json:"labels"`
}
@ -105,6 +106,7 @@ type EditPullRequestOption struct {
Title string `json:"title"`
Body string `json:"body"`
Assignee string `json:"assignee"`
Assignees []string `json:"assignees"`
Milestone int64 `json:"milestone"`
Labels []int64 `json:"labels"`
State *string `json:"state"`