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

12 lines
300 B
Ruby
Raw Normal View History

2018-09-06 21:38:48 +08:00
# frozen_string_literal: true
module Api
module V1
class MyModuleGroupSerializer < ActiveModel::Serializer
type :MyModuleGroup
2018-09-06 21:38:48 +08:00
attributes :id, :created_at, :updated_at, :created_by_id, :experiment_id
belongs_to :experiment, serializer: ExperimentSerializer
2018-09-06 21:38:48 +08:00
end
end
end