]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/changeset_comment.rb
Merge remote-tracking branch 'upstream/pull/5532'
[rails.git] / app / models / changeset_comment.rb
index 3bc9483fa9c904da8f65df1be3758a17784f6798..d825c9ed58d4fe1f3ef99937278238848585a654 100644 (file)
@@ -12,6 +12,7 @@
 # Indexes
 #
 #  index_changeset_comments_on_author_id_and_created_at     (author_id,created_at)
+#  index_changeset_comments_on_author_id_and_id             (author_id,id)
 #  index_changeset_comments_on_changeset_id_and_created_at  (changeset_id,created_at)
 #  index_changeset_comments_on_created_at                   (created_at)
 #
@@ -25,6 +26,8 @@ class ChangesetComment < ApplicationRecord
   belongs_to :changeset
   belongs_to :author, :class_name => "User"
 
+  scope :visible, -> { where(:visible => true) }
+
   validates :id, :uniqueness => true, :presence => { :on => :update },
                  :numericality => { :on => :update, :only_integer => true }
   validates :changeset, :associated => true