Load milestone in API PR list (#9671)
* Load milestone for Issue API format Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move further down Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: techknowlogick <matti@mdranta.net>
This commit is contained in:
		
							parent
							
								
									e90e435f04
								
							
						
					
					
						commit
						480ef9d410
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		|  | @ -403,11 +403,12 @@ func (issue *Issue) apiFormat(e Engine) *api.Issue { | |||
| 		apiIssue.Closed = issue.ClosedUnix.AsTimePtr() | ||||
| 	} | ||||
| 
 | ||||
| 	issue.loadMilestone(e) | ||||
| 	if issue.Milestone != nil { | ||||
| 		apiIssue.Milestone = issue.Milestone.APIFormat() | ||||
| 	} | ||||
| 	issue.loadAssignees(e) | ||||
| 
 | ||||
| 	issue.loadAssignees(e) | ||||
| 	if len(issue.Assignees) > 0 { | ||||
| 		for _, assignee := range issue.Assignees { | ||||
| 			apiIssue.Assignees = append(apiIssue.Assignees, assignee.APIFormat()) | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue