class OldRelation < ActiveRecord::Base
set_table_name 'relations'
- belongs_to :user
+ belongs_to :changeset
def self.from_relation(relation)
old_relation = OldRelation.new
el1 << e
end
return el1
- end
+ end
+
+ # Temporary method to match interface to nodes
+ def tags_as_hash
+ return self.tags
+ end
+
+ # Temporary method to match interface to relations
+ def relation_members
+ return self.old_members
+ end
+
+ # Pretend we're not in any relations
+ def containing_relation_members
+ return []
+ end
end