Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public class ApprovalRule implements Serializable {
private Boolean containsHiddenGroups;
private List<User> approvedBy;
private Boolean approved;
private List<ProtectedBranch> protectedBranches;

public Long getId() {
return id;
Expand Down Expand Up @@ -108,6 +109,14 @@ public void setApproved(Boolean approved) {
this.approved = approved;
}

public List<ProtectedBranch> getProtectedBranches() {
return protectedBranches;
}

public void setProtectedBranches(List<ProtectedBranch> protectedBranches) {
this.protectedBranches = protectedBranches;
}

@Override
public String toString() {
return (JacksonJson.toJsonString(this));
Expand Down
Loading