Commit 0f486b16 by Arthur Barrett

add creation time to output

parent 131c63b6
......@@ -65,5 +65,7 @@ class Note(models.Model):
'end': self.range_end,
'endOffset': self.range_end_offset
}],
'tags': self.tags.split(",")
'tags': self.tags.split(","),
'created': str(self.created),
'updated': str(self.updated)
}
\ No newline at end of file
Markdown is supported
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