]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/way.rb
Rework application configuration
[rails.git] / app / models / way.rb
index 639f4e69a770ad94e1d2ccda8884d90cabffa459..cc9343e7c508324c53f9230664529f1aba996bf5 100644 (file)
@@ -234,8 +234,8 @@ class Way < ActiveRecord::Base
 
   def preconditions_ok?(old_nodes = [])
     return false if self.nds.empty?
-    if self.nds.length > APP_CONFIG['max_number_of_way_nodes']
-      raise OSM::APITooManyWayNodesError.new(self.id, self.nds.length, APP_CONFIG['max_number_of_way_nodes'])
+    if self.nds.length > MAX_NUMBER_OF_WAY_NODES
+      raise OSM::APITooManyWayNodesError.new(self.id, self.nds.length, MAX_NUMBER_OF_WAY_NODES)
     end
 
     # check only the new nodes, for efficiency - old nodes having been checked last time and can't