mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-01 21:47:16 +00:00
15 lines
254 B
Ruby
15 lines
254 B
Ruby
# DON'T USE DIRECTLY - for inheritance
|
|
attributes :name, :id, :description
|
|
|
|
child :address do
|
|
extends "json/partials/address"
|
|
end
|
|
|
|
node :path do |enterprise|
|
|
shop_enterprise_path(enterprise)
|
|
end
|
|
|
|
node :hash do |enterprise|
|
|
enterprise.to_param
|
|
end
|