parsley/app/serializers/log_serializer.rb

13 lines
245 B
Ruby
Raw Normal View History

2020-08-07 12:33:06 -05:00
class LogSerializer < ApplicationSerializer
def serialize
{
id: item.id,
date: item.date,
rating: item.rating,
notes: item.notes,
recipe: RecipeSerializer.for(item.recipe).serialize
}
end
end