]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/way.rb
Rename create element consistency check
[rails.git] / app / models / way.rb
index 767289d583ddc3b3a3769b37e4ba2714ad00aebb..2a989f9f3b6d6068647d41c7c2fa47aa5a01a52b 100644 (file)
@@ -27,9 +27,9 @@ class Way < ApplicationRecord
 
   belongs_to :changeset
 
 
   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
   has_many :nodes, :through => :way_nodes
 
   has_many :way_tags
@@ -155,7 +155,7 @@ class Way < ApplicationRecord
   end
 
   def create_with_history(user)
   end
 
   def create_with_history(user)
-    check_create_consistency(self, user)
+    check_create_element_consistency(self, user)
     raise OSM::APIPreconditionFailedError, "Cannot create way: data is invalid." unless preconditions_ok?
 
     self.version = 0
     raise OSM::APIPreconditionFailedError, "Cannot create way: data is invalid." unless preconditions_ok?
 
     self.version = 0
@@ -227,7 +227,7 @@ class Way < ApplicationRecord
   private
 
   def save_with_history!
   private
 
   def save_with_history!
-    t = Time.now.getutc
+    t = Time.now.utc
 
     self.version += 1
     self.timestamp = t
 
     self.version += 1
     self.timestamp = t