X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/6aca6cfabf21da48567e8197457dae8785b7324d..e957aaacb622648a890657ed0880366c1f207699:/app/models/note_comment.rb diff --git a/app/models/note_comment.rb b/app/models/note_comment.rb index bcbcf79be..399029118 100644 --- a/app/models/note_comment.rb +++ b/app/models/note_comment.rb @@ -10,12 +10,8 @@ class NoteComment < ActiveRecord::Base validates_associated :author validates_inclusion_of :event, :in => [ "opened", "closed", "reopened", "commented", "hidden" ] - # Return the author name - def author_name - if self.author_id.nil? - self.read_attribute(:author_name) - else - self.author.display_name - end + # Return the comment text + def body + RichText.new("text", read_attribute(:body)) end end