X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/e799022131f3e833179e9058060ec5e136ed2edd..e7c2d2a211e0f5604acc53f4a941067d94d675a9:/app/models/segment.rb diff --git a/app/models/segment.rb b/app/models/segment.rb index ddfc3db03..785701c3d 100644 --- a/app/models/segment.rb +++ b/app/models/segment.rb @@ -4,11 +4,12 @@ class Segment < ActiveRecord::Base validates_numericality_of :node_a validates_numericality_of :node_b - # FIXME validate a nd b exist and are visible has_many :old_segments, :foreign_key => :id belongs_to :user + has_one :from_node, :class_name => 'Node', :foreign_key => 'id' + has_one :to_node, :class_name => 'Node', :foreign_key => 'id' def self.from_xml(xml, create=false) p = XML::Parser.new @@ -102,5 +103,8 @@ class Segment < ActiveRecord::Base end end + def preconditions_ok? + from_node and from_node.visible and to_node and to_node.visible + end end