+ def freshly_closed?
+ return false unless closed?
+
+ Time.now.utc < freshly_closed_until
+ end
+
+ def freshly_closed_until
+ return nil unless closed?
+
+ closed_at + DEFAULT_FRESHLY_CLOSED_LIMIT
+ end
+
+ # Return the note's description, derived from the first comment
+ def description
+ comments.first.body
+ end
+
+ # Return the note's author object, derived from the first comment