Commit 87d8a580 authored by Jasper's avatar Jasper
Browse files

Add more field to NoteEvent.ObjectAttributes

parent 750213b9
...@@ -131,6 +131,8 @@ public class NoteEvent extends AbstractEvent { ...@@ -131,6 +131,8 @@ public class NoteEvent extends AbstractEvent {
private Integer id; private Integer id;
private String note; private String note;
private String discussionId;
private String type;
private NoteableType noteableType; private NoteableType noteableType;
private Integer authorId; private Integer authorId;
private Date createdAt; private Date createdAt;
...@@ -160,6 +162,22 @@ public class NoteEvent extends AbstractEvent { ...@@ -160,6 +162,22 @@ public class NoteEvent extends AbstractEvent {
this.note = note; this.note = note;
} }
public String getDiscussionId() {
return discussionId;
}
public void setDiscussionId(String discussionId) {
this.discussionId = discussionId;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public NoteableType getNoteableType() { public NoteableType getNoteableType() {
return noteableType; return noteableType;
} }
......
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