Farmbot-Web-App/app/serializers/plant_serializer.rb

20 lines
261 B
Ruby
Raw Normal View History

2018-09-20 13:59:13 -06:00
class PlantSerializer < BasePointSerializer
attributes :openfarm_slug, :plant_stage, :planted_at, :radius, :meta
2018-04-07 15:04:33 -06:00
def x
object.x.round
end
def y
object.y.round
end
def z
object.z.round
end
def meta
object.meta || {}
end
end