mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-18 07:01:58 +08:00
15 lines
391 B
Ruby
15 lines
391 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class ProtocolSerializer < ActiveModel::Serializer
|
|
type :protocols
|
|
attributes :id, :name, :authors, :description,
|
|
:team_id, :protocol_type,
|
|
:nr_of_linked_children
|
|
attribute :my_module_id, key: :task_id
|
|
|
|
belongs_to :my_module, serializer: MyModuleSerializer
|
|
end
|
|
end
|
|
end
|