mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-04-03 06:59:14 +00:00
8 lines
145 B
Ruby
8 lines
145 B
Ruby
class Api::TaxonSerializer < ActiveModel::Serializer
|
|
attributes :id, :name, :permalink, :icon
|
|
|
|
def icon
|
|
object.icon(:original)
|
|
end
|
|
end
|