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

12 lines
248 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Api
module V1
class ChecklistSerializer < ActiveModel::Serializer
type :checklists
attributes :id, :name
has_many :checklist_items, serializer: ChecklistItemSerializer
end
end
end