X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/72e33046c80bddc0ca9b1336786dcb4b349137f7..43f39c50a358bef5be0847888318a64f162c9faf:/app/models/note_comment.rb diff --git a/app/models/note_comment.rb b/app/models/note_comment.rb index bcbcf79be..07d43cd74 100644 --- a/app/models/note_comment.rb +++ b/app/models/note_comment.rb @@ -1,5 +1,5 @@ class NoteComment < ActiveRecord::Base - belongs_to :note, :foreign_key => :note_id + belongs_to :note, :foreign_key => :note_id, :touch => true belongs_to :author, :class_name => "User", :foreign_key => :author_id validates_presence_of :id, :on => :update @@ -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