mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-05 01:10:12 -05:00
Adding LastReviewedCommit
This commit is contained in:
parent
691c6b2c37
commit
254a11e522
@ -105,10 +105,11 @@ type User struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type UserWithMetadata struct {
|
type UserWithMetadata struct {
|
||||||
User UserWithLinks `json:"user,omitempty"`
|
User UserWithLinks `json:"user,omitempty"`
|
||||||
Role string `json:"role,omitempty"`
|
Role string `json:"role,omitempty"`
|
||||||
Approved bool `json:"approved,omitempty"`
|
Approved bool `json:"approved,omitempty"`
|
||||||
Status string `json:"status,omitempty"`
|
Status string `json:"status,omitempty"`
|
||||||
|
LastReviewedCommit string `json:"lastReviewedCommit,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// PermissionGlobal are global permissions
|
// PermissionGlobal are global permissions
|
||||||
|
@ -453,9 +453,10 @@ func TestGetPullRequestResponse(t *testing.T) {
|
|||||||
Slug: "jcitizen",
|
Slug: "jcitizen",
|
||||||
Type: "NORMAL",
|
Type: "NORMAL",
|
||||||
},
|
},
|
||||||
Role: "REVIEWER",
|
Role: "REVIEWER",
|
||||||
Approved: true,
|
Approved: true,
|
||||||
Status: "APPROVED",
|
Status: "APPROVED",
|
||||||
|
LastReviewedCommit: "7549846524f8aed2bd1c0249993ae1bf9d3c9998",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
Participants: []UserWithMetadata{
|
Participants: []UserWithMetadata{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user