Files
mozo-backend/app/serializers/product_serializer.rb
T
2014-08-27 17:14:56 +02:00

13 lines
242 B
Ruby

class ProductSerializer < Qwaiter::Serializer
embed :ids, include: true
attributes :name, :price, :description, :image
def image
if object.image.present?
{small: object.image.url(:small)}
else
nil
end
end
end