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

13 lines
258 B
Ruby

# frozen_string_literal: true
module Api
module V1
class ReportSerializer < ActiveModel::Serializer
type :reports
attributes :id, :name, :description, :project_id
belongs_to :project, serializer: ProjectSerializer
end
end
end