]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/way.rb
Add inverse_of to relationships that can't detect it automatically
[rails.git] / app / models / way.rb
index 724965ddfe4bc1a24b4de482bf6529ca131eeb90..0c6e645b7e2ce40f89bf81ca2002a5c056550cf2 100644 (file)
@@ -27,9 +27,9 @@ class Way < ApplicationRecord
 
   belongs_to :changeset
 
-  has_many :old_ways, -> { order(:version) }
+  has_many :old_ways, -> { order(:version) }, :inverse_of => :current_way
 
-  has_many :way_nodes, -> { order(:sequence_id) }
+  has_many :way_nodes, -> { order(:sequence_id) }, :inverse_of => :way
   has_many :nodes, :through => :way_nodes
 
   has_many :way_tags
@@ -112,7 +112,7 @@ class Way < ApplicationRecord
   end
 
   def tags
-    @tags ||= way_tags.collect { |t| [t.k, t.v] }.to_h
+    @tags ||= way_tags.to_h { |t| [t.k, t.v] }
   end
 
   attr_writer :nds, :tags