X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7c98b41cc89068d049a18f8738276f19cd47095e..3d7eb387a7c3573f1a1d17df00adcaa1fb9b9fa5:/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