Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
go-gitlab
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
go-gitlab
Commits
60ef0cdb
Commit
60ef0cdb
authored
Apr 20, 2018
by
Shane Da Silva
Committed by
Sander van Harmelen
Apr 20, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add closed_by and closed_at to merge_request struct (#380)
parent
d427318b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
merge_requests.go
merge_requests.go
+8
-0
No files found.
merge_requests.go
View file @
60ef0cdb
...
@@ -76,6 +76,14 @@ type MergeRequest struct {
...
@@ -76,6 +76,14 @@ type MergeRequest struct {
CreatedAt
*
time
.
Time
`json:"created_at"`
CreatedAt
*
time
.
Time
`json:"created_at"`
}
`json:"merged_by"`
}
`json:"merged_by"`
MergedAt
*
time
.
Time
`json:"merged_at"`
MergedAt
*
time
.
Time
`json:"merged_at"`
ClosedBy
struct
{
ID
int
`json:"id"`
Username
string
`json:"username"`
Name
string
`json:"name"`
State
string
`json:"state"`
CreatedAt
*
time
.
Time
`json:"created_at"`
}
`json:"closed_by"`
ClosedAt
*
time
.
Time
`json:"closed_at"`
Subscribed
bool
`json:"subscribed"`
Subscribed
bool
`json:"subscribed"`
SHA
string
`json:"sha"`
SHA
string
`json:"sha"`
MergeCommitSHA
string
`json:"merge_commit_sha"`
MergeCommitSHA
string
`json:"merge_commit_sha"`
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment