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

12 lines
351 B
Ruby
Raw Normal View History

class DeviceSerializer < ActiveModel::Serializer
2017-10-31 12:59:11 -06:00
attributes :id, :name, :timezone, :last_saw_api, :last_saw_mq,
2017-12-28 08:36:48 -07:00
:last_seen, :tz_offset_hrs
def last_seen
# TODO: Remove this by December 2017.
# This is a legacy attribute that needs to go away, but will cause
# crashes on legacy versions of FBOS.
object.last_saw_api
end
end