mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-30 21:27:17 +00:00
12 lines
249 B
Ruby
12 lines
249 B
Ruby
object @enterprise_relationship
|
|
|
|
attributes :id, :parent_id, :child_id
|
|
|
|
node :parent_name do |enterprise_relationship|
|
|
enterprise_relationship.parent.name
|
|
end
|
|
|
|
node :child_name do |enterprise_relationship|
|
|
enterprise_relationship.child.name
|
|
end
|