mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
11 lines
190 B
Ruby
11 lines
190 B
Ruby
class Api::TaxonSerializer < ActiveModel::Serializer
|
|
cached
|
|
delegate :cache_key, to: :object
|
|
|
|
attributes :id, :name, :permalink, :icon
|
|
|
|
def icon
|
|
object.icon(:original)
|
|
end
|
|
end
|