Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
0a41a569
Unverified
Commit
0a41a569
authored
Feb 05, 2020
by
Albert-Jan Verhees
Committed by
GitHub
Feb 05, 2020
Browse files
Add support for multiple assignees in Merge Requests (#504)
parent
4ac47463
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/MergeRequest.java
View file @
0a41a569
...
@@ -14,6 +14,7 @@ public class MergeRequest {
...
@@ -14,6 +14,7 @@ public class MergeRequest {
private
Boolean
allowMaintainerToPush
;
private
Boolean
allowMaintainerToPush
;
private
Integer
approvalsBeforeMerge
;
private
Integer
approvalsBeforeMerge
;
private
Assignee
assignee
;
private
Assignee
assignee
;
private
List
<
Assignee
>
assignees
;
private
Author
author
;
private
Author
author
;
private
List
<
Diff
>
changes
;
private
List
<
Diff
>
changes
;
private
Date
closedAt
;
private
Date
closedAt
;
...
@@ -94,6 +95,14 @@ public class MergeRequest {
...
@@ -94,6 +95,14 @@ public class MergeRequest {
this
.
assignee
=
assignee
;
this
.
assignee
=
assignee
;
}
}
public
List
<
Assignee
>
getAssignees
()
{
return
assignees
;
}
public
void
setAssignees
(
List
<
Assignee
>
assignees
)
{
this
.
assignees
=
assignees
;
}
public
Author
getAuthor
()
{
public
Author
getAuthor
()
{
return
author
;
return
author
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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