mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
10 lines
169 B
Ruby
10 lines
169 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module Admin
|
|
class TaxonSerializer < ActiveModel::Serializer
|
|
attributes :id, :name, :pretty_name
|
|
end
|
|
end
|
|
end
|