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

13 lines
332 B
Ruby
Raw Normal View History

2018-09-05 15:55:04 +08:00
# frozen_string_literal: true
module Api
module V1
class MyModuleSerializer < ActiveModel::Serializer
type :tasks
attributes :id, :name, :due_date, :description,
:my_module_group_id, :nr_of_assigned_samples, :state
belongs_to :experiment, serializer: ExperimentSerializer
2018-09-05 15:55:04 +08:00
end
end
end