Commit d0a7d1b5 authored by Greg Messner's avatar Greg Messner
Browse files

Added support for creating and resolving merge request discussions (#291).

parent 0e8f58f2
......@@ -105,6 +105,8 @@ public class Note {
private Participant resolvedBy;
private Type type;
private Position position;
public String getAttachment() {
return attachment;
}
......@@ -257,6 +259,14 @@ public class Note {
this.type = type;
}
public Position getPosition() {
return position;
}
public void setPosition(Position position) {
this.position = position;
}
@Override
public String toString() {
return (JacksonJson.toJsonString(this));
......
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