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

8 lines
159 B
Ruby
Raw Normal View History

2018-10-18 19:44:03 -06:00
class BasePointSerializer < ApplicationSerializer
2018-10-18 20:54:25 -06:00
attributes :device_id, :name, :pointer_type, :meta, :x, :y, :z
2018-04-07 15:04:33 -06:00
def meta
object.meta || {}
end
end