X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2063fc98f185e68bc655b79f6d75010ad2a6b9b3..67dd9e4c9d487bdb5f38a09dc0c99def4989326e:/app/models/old_way.rb diff --git a/app/models/old_way.rb b/app/models/old_way.rb index db8a6df40..3df0c2d4f 100644 --- a/app/models/old_way.rb +++ b/app/models/old_way.rb @@ -1,10 +1,13 @@ class OldWay < ActiveRecord::Base include ConsistencyValidations - + include Redactable + self.table_name = "ways" self.primary_keys = "way_id", "version" belongs_to :changeset + belongs_to :redaction + belongs_to :current_way, :class_name => "Way", :foreign_key => "way_id" has_many :old_nodes, :class_name => 'OldWayNode', :foreign_key => [:way_id, :version] has_many :old_tags, :class_name => 'OldWayTag', :foreign_key => [:way_id, :version] @@ -158,4 +161,10 @@ class OldWay < ActiveRecord::Base def containing_relation_members return [] end + + # check whether this element is the latest version - that is, + # has the same version as its "current" counterpart. + def is_latest_version? + current_way.version == self.version + end end