mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
9 lines
180 B
Ruby
9 lines
180 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Api::TaxonSerializer < ActiveModel::Serializer
|
|
cached
|
|
delegate :cache_key, to: :object
|
|
|
|
attributes :id, :name, :permalink, :position
|
|
end
|