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

9 lines
185 B
Ruby
Raw Normal View History

2018-10-18 19:44:03 -06:00
class ApplicationSerializer < ActiveModel::Serializer
2018-10-18 20:54:25 -06:00
attributes :id, :created_at, :updated_at
2019-01-09 15:02:40 -07:00
def body
f = object.fragment
f ? f.serialize.fetch(:body, []) : []
end
2018-10-18 19:44:03 -06:00
end