]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/way.rb
Cope with MESSAGES_DOMAIN not being defined
[rails.git] / app / models / way.rb
index cc9343e7c508324c53f9230664529f1aba996bf5..8206eecb30e0f1e54ffb5d7cb16f3346f199149b 100644 (file)
@@ -25,6 +25,9 @@ class Way < ActiveRecord::Base
   validates_numericality_of :id, :on => :update, :integer_only => true
   validates_associated :changeset
 
+  scope :visible, where(:visible => true)
+  scope :invisible, where(:visible => false)
+
   # Read in xml as text and return it's Way object representation
   def self.from_xml(xml, create=false)
     begin