File tree 3 files changed +7
-5
lines changed
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import (
14
14
)
15
15
16
16
func Version () string {
17
- return "0.12.0 "
17
+ return "0.12.1 "
18
18
}
19
19
20
20
// Client represents a Gogs API client.
Original file line number Diff line number Diff line change @@ -26,13 +26,13 @@ type PullRequestMeta struct {
26
26
type Issue struct {
27
27
ID int64 `json:"id"`
28
28
Index int64 `json:"number"`
29
- State StateType `json:"state "`
29
+ Poster * User `json:"user "`
30
30
Title string `json:"title"`
31
31
Body string `json:"body"`
32
- User * User `json:"user"`
33
32
Labels []* Label `json:"labels"`
34
33
Milestone * Milestone `json:"milestone"`
35
34
Assignee * User `json:"assignee"`
35
+ State StateType `json:"state"`
36
36
Comments int `json:"comments"`
37
37
Created time.Time `json:"created_at"`
38
38
Updated time.Time `json:"updated_at"`
Original file line number Diff line number Diff line change @@ -13,15 +13,17 @@ type PullRequest struct {
13
13
// Copied from issue.go
14
14
ID int64 `json:"id"`
15
15
Index int64 `json:"number"`
16
- State StateType `json:"state "`
16
+ Poster * User `json:"user "`
17
17
Title string `json:"title"`
18
18
Body string `json:"body"`
19
- User * User `json:"user"`
20
19
Labels []* Label `json:"labels"`
21
20
Milestone * Milestone `json:"milestone"`
22
21
Assignee * User `json:"assignee"`
22
+ State StateType `json:"state"`
23
23
Comments int `json:"comments"`
24
24
25
+ HTMLURL string `json:"html_url"`
26
+
25
27
Mergeable * bool `json:"mergeable"`
26
28
HasMerged bool `json:"merged"`
27
29
Merged * time.Time `json:"merged_at"`
You can’t perform that action at this time.
0 commit comments