X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7599f98957334d1924550205f7ba12a726de7eb0..43f39c50a358bef5be0847888318a64f162c9faf:/app/models/note_comment.rb diff --git a/app/models/note_comment.rb b/app/models/note_comment.rb index 0500acb8b..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,15 +10,6 @@ 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 - end - # Return the comment text def body RichText.new("text", read_attribute(:body))