diff options
author | Vitaly Takmazov | 2018-08-14 13:23:53 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-08-14 16:45:12 +0300 |
commit | 2c1bfab10903895ece9644bc095597aaef2a75e8 (patch) | |
tree | c721f8582e2b9f1d91ab88ce7d3dfb6cd7e9d2d5 /juick-common/src/main/java/com/juick/Message.java | |
parent | c0ac4aa5824b45ff9543f60c648625869b11b1a3 (diff) |
Message editing API
Diffstat (limited to 'juick-common/src/main/java/com/juick/Message.java')
-rw-r--r-- | juick-common/src/main/java/com/juick/Message.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/juick-common/src/main/java/com/juick/Message.java b/juick-common/src/main/java/com/juick/Message.java index 3800f466..212cb2fa 100644 --- a/juick-common/src/main/java/com/juick/Message.java +++ b/juick-common/src/main/java/com/juick/Message.java @@ -46,6 +46,7 @@ public class Message implements Comparable { private final List<Tag> tags; private Instant ts; private Instant updated; + private Instant updatedAt; private boolean unread; @JsonIgnore private int privacy = 1; @@ -281,6 +282,9 @@ public class Message implements Comparable { this.attachment = attachment; } + /** + * @return timestamp of the last comment + */ @XmlTransient public Instant getUpdated() { return updated; @@ -329,4 +333,18 @@ public class Message implements Comparable { public void setRecommendations(Set<String> recommendations) { this.recommendations = recommendations; } + + /** + * @return timestamp of the last edit + */ + @XmlTransient + @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "UTC") + @JsonProperty("updated_at") + public Instant getUpdatedAt() { + return updatedAt; + } + + public void setUpdatedAt(Instant updatedAt) { + this.updatedAt = updatedAt; + } } |