mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-23 05:28:53 +00:00
10 lines
249 B
Plaintext
10 lines
249 B
Plaintext
r.list_of :enterprises, @collection do
|
|
r.element :id
|
|
r.element :name
|
|
|
|
r.list_of :supplied_products do |product|
|
|
r.element :name
|
|
r.element :image_url, product.images.present? ? product.images.first.attachment.url(:mini) : nil
|
|
end
|
|
end
|