]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/note.rb
Merge remote-tracking branch 'upstream/master' into routing
[rails.git] / app / models / note.rb
index 9dc1227218f8a25b9a080223c1485dac49092132..27357e58a86830620d6f5224f9a32a7ab7c000ae 100644 (file)
@@ -11,6 +11,9 @@ class Note < ActiveRecord::Base
   validates_inclusion_of :status, :in => ["open", "closed", "hidden"]
   validate :validate_position
 
+  scope :visible, -> { where("status != 'hidden'") }
+  scope :invisible, -> { where("status = 'hidden'") }
+
   after_initialize :set_defaults
 
   # Sanity check the latitude and longitude and add an error if it's broken