parsley/app/serializers/usda_food_serializer.rb

8 lines
197 B
Ruby
Raw Normal View History

2020-08-07 12:33:06 -05:00
class UsdaFoodSerializer < ApplicationSerializer
def serialize
{
**item_properties(:ndbn, :kcal, :carbohydrates, :lipid, :protein),
name: item.long_description
}
end
end