Files
mozo-backend/app/serializers/product_serializer.rb
T

12 lines
273 B
Ruby

class ProductSerializer < Qwaiter::Serializer
attributes :name, :price, :description, :image, :code, :position, :visible, :active, :product_category_id
def image
if object.image.present?
{small: object.image.url(:small)}
else
nil
end
end
end