mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-31 20:19:05 +08:00
13 lines
299 B
Ruby
13 lines
299 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class ProjectSerializer < ActiveModel::Serializer
|
|
type :projects
|
|
attributes :id, :name, :visibility, :due_date,
|
|
:archived, :experiments_order
|
|
|
|
belongs_to :team, serializer: TeamSerializer
|
|
end
|
|
end
|
|
end
|