X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/322d293007eb75eedae7bd6138dc5abc3143d972..98b15bef455de6fcf83fec1e5fdddc244dc1a914:/app/models/node.rb diff --git a/app/models/node.rb b/app/models/node.rb index 391b50dcd..faba4ed66 100644 --- a/app/models/node.rb +++ b/app/models/node.rb @@ -267,6 +267,13 @@ class Node < ActiveRecord::Base @tags[k] = v end + ## + # are the preconditions OK? this is mainly here to keep the duck + # typing interface the same between nodes, ways and relations. + def preconditions_ok? + in_world? + end + ## # dummy method to make the interfaces of node, way and relation # more consistent.