mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
20 lines
731 B
Ruby
20 lines
731 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class InventoryItemSerializer < ActiveModel::Serializer
|
|
type :inventory_items
|
|
attributes :name
|
|
has_many :repository_cells, key: :inventory_cells,
|
|
serializer: InventoryCellSerializer,
|
|
class_name: 'RepositoryCell',
|
|
unless: -> { object.repository_cells.blank? }
|
|
belongs_to :repository, key: :inventory,
|
|
serializer: InventorySerializer,
|
|
class_name: 'Repository',
|
|
if: -> { instance_options[:show_repository] }
|
|
|
|
include TimestampableModel
|
|
end
|
|
end
|
|
end
|