Unverified Commit 0a41a569 authored by Albert-Jan Verhees's avatar Albert-Jan Verhees Committed by GitHub
Browse files

Add support for multiple assignees in Merge Requests (#504)

parent 4ac47463
......@@ -14,6 +14,7 @@ public class MergeRequest {
private Boolean allowMaintainerToPush;
private Integer approvalsBeforeMerge;
private Assignee assignee;
private List<Assignee> assignees;
private Author author;
private List<Diff> changes;
private Date closedAt;
......@@ -94,6 +95,14 @@ public class MergeRequest {
this.assignee = assignee;
}
public List<Assignee> getAssignees() {
return assignees;
}
public void setAssignees(List<Assignee> assignees) {
this.assignees = assignees;
}
public Author getAuthor() {
return author;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment