mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 05:34:53 +08:00
13 lines
370 B
Ruby
13 lines
370 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class ReportSerializer < ActiveModel::Serializer
|
|
type :reports
|
|
attributes :id, :name, :description
|
|
belongs_to :user, serializer: UserSerializer
|
|
belongs_to :project, serializer: ProjectSerializer,
|
|
unless: -> { instance_options[:hide_project] }
|
|
end
|
|
end
|
|
end
|