]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/tracepoint.rb
Add inverse_of to relationships that can't detect it automatically
[rails.git] / app / models / tracepoint.rb
index 000f257b4eba0f683db3c0af4c974fe80aa9015d..d36ceb8c3c52606f21e74489ef2eabfeddc97169 100644 (file)
@@ -30,13 +30,5 @@ class Tracepoint < ApplicationRecord
   validates :trace, :associated => true
   validates :timestamp, :presence => true
 
-  belongs_to :trace, :foreign_key => "gpx_id"
-
-  def to_xml_node(print_timestamp: false)
-    el1 = XML::Node.new "trkpt"
-    el1["lat"] = lat.to_s
-    el1["lon"] = lon.to_s
-    el1 << (XML::Node.new("time") << timestamp.xmlschema) if print_timestamp
-    el1
-  end
+  belongs_to :trace, :foreign_key => "gpx_id", :inverse_of => :points
 end