mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	| @@ -66,7 +66,7 @@ func TestAPIPullReview(t *testing.T) { | |||||||
| 	var reviewComments []*api.PullReviewComment | 	var reviewComments []*api.PullReviewComment | ||||||
| 	DecodeJSON(t, resp, &reviewComments) | 	DecodeJSON(t, resp, &reviewComments) | ||||||
| 	assert.Len(t, reviewComments, 1) | 	assert.Len(t, reviewComments, 1) | ||||||
| 	assert.EqualValues(t, "Ghost", reviewComments[0].Reviewer.UserName) | 	assert.EqualValues(t, "Ghost", reviewComments[0].Poster.UserName) | ||||||
| 	assert.EqualValues(t, "a review from a deleted user", reviewComments[0].Body) | 	assert.EqualValues(t, "a review from a deleted user", reviewComments[0].Body) | ||||||
| 	assert.EqualValues(t, comment.ID, reviewComments[0].ID) | 	assert.EqualValues(t, comment.ID, reviewComments[0].ID) | ||||||
| 	assert.EqualValues(t, comment.UpdatedUnix, reviewComments[0].Updated.Unix()) | 	assert.EqualValues(t, comment.UpdatedUnix, reviewComments[0].Updated.Unix()) | ||||||
|   | |||||||
| @@ -86,7 +86,8 @@ func ToPullReviewCommentList(review *models.Review, doer *models.User) ([]*api.P | |||||||
| 				apiComment := &api.PullReviewComment{ | 				apiComment := &api.PullReviewComment{ | ||||||
| 					ID:           comment.ID, | 					ID:           comment.ID, | ||||||
| 					Body:         comment.Content, | 					Body:         comment.Content, | ||||||
| 					Reviewer:     ToUser(comment.Poster, doer), | 					Poster:       ToUser(comment.Poster, doer), | ||||||
|  | 					Resolver:     ToUser(comment.ResolveDoer, doer), | ||||||
| 					ReviewID:     review.ID, | 					ReviewID:     review.ID, | ||||||
| 					Created:      comment.CreatedUnix.AsTime(), | 					Created:      comment.CreatedUnix.AsTime(), | ||||||
| 					Updated:      comment.UpdatedUnix.AsTime(), | 					Updated:      comment.UpdatedUnix.AsTime(), | ||||||
|   | |||||||
| @@ -49,7 +49,8 @@ type PullReview struct { | |||||||
| type PullReviewComment struct { | type PullReviewComment struct { | ||||||
| 	ID       int64  `json:"id"` | 	ID       int64  `json:"id"` | ||||||
| 	Body     string `json:"body"` | 	Body     string `json:"body"` | ||||||
| 	Reviewer *User  `json:"user"` | 	Poster   *User  `json:"user"` | ||||||
|  | 	Resolver *User  `json:"resolver"` | ||||||
| 	ReviewID int64  `json:"pull_request_review_id"` | 	ReviewID int64  `json:"pull_request_review_id"` | ||||||
|  |  | ||||||
| 	// swagger:strfmt date-time | 	// swagger:strfmt date-time | ||||||
|   | |||||||
| @@ -15460,6 +15460,9 @@ | |||||||
|           "type": "string", |           "type": "string", | ||||||
|           "x-go-name": "HTMLPullURL" |           "x-go-name": "HTMLPullURL" | ||||||
|         }, |         }, | ||||||
|  |         "resolver": { | ||||||
|  |           "$ref": "#/definitions/User" | ||||||
|  |         }, | ||||||
|         "updated_at": { |         "updated_at": { | ||||||
|           "type": "string", |           "type": "string", | ||||||
|           "format": "date-time", |           "format": "date-time", | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user