scinote-web/app/serializers/api/v1/protocol_serializer.rb

14 lines
360 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Api
module V1
class ProtocolSerializer < ActiveModel::Serializer
type :protocols
2018-09-11 21:41:38 +08:00
attributes :id, :name, :authors, :description,
:my_module_id, :team_id, :protocol_type,
:nr_of_linked_children
belongs_to :my_module, serializer: MyModuleSerializer
end
end
end