X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3426976606d30278fcf5ed279d3c95900785c4a5..c24c2e481cc6d27e76274ed4e32668a4690a7788:/app/models/note.rb diff --git a/app/models/note.rb b/app/models/note.rb index ec57b770b..ea88599a4 100644 --- a/app/models/note.rb +++ b/app/models/note.rb @@ -22,6 +22,7 @@ class Note < ApplicationRecord include GeoRecord has_many :comments, -> { left_joins(:author).where(:visible => true, :users => { :status => [nil, "active", "confirmed"] }).order(:created_at) }, :class_name => "NoteComment", :foreign_key => :note_id + has_many :all_comments, -> { left_joins(:author).order(:created_at) }, :class_name => "NoteComment", :foreign_key => :note_id validates :id, :uniqueness => true, :presence => { :on => :update }, :numericality => { :on => :update, :only_integer => true }