X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a6b84a0294a2929006ff056f56103be549c5b5a2..fb4ea1a02ac5dc1b0ef444e0d63fafa8f756fa8d:/app/models/old_way.rb diff --git a/app/models/old_way.rb b/app/models/old_way.rb index ed1f867f6..63c4d8b65 100644 --- a/app/models/old_way.rb +++ b/app/models/old_way.rb @@ -16,7 +16,9 @@ class OldWay < ActiveRecord::Base has_many :old_nodes, :class_name => "OldWayNode", :foreign_key => [:way_id, :version] has_many :old_tags, :class_name => "OldWayTag", :foreign_key => [:way_id, :version] - validates_associated :changeset + validates :changeset, :presence => true, :associated => true + validates :timestamp, :presence => true + validates :visible, :inclusion => [true, false] def self.from_way(way) old_way = OldWay.new @@ -114,11 +116,6 @@ class OldWay < ActiveRecord::Base points end - # Temporary method to match interface to nodes - def tags_as_hash - tags - end - # Temporary method to match interface to ways def way_nodes old_nodes