mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
26 lines
655 B
Ruby
26 lines
655 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class InventoryCellSerializer < ActiveModel::Serializer
|
|
type :inventory_cells
|
|
attributes :id, :value_type, :value
|
|
attribute :repository_column_id, key: :column_id
|
|
|
|
include TimestampableModel
|
|
|
|
def value
|
|
ActiveModelSerializers::SerializableResource.new(
|
|
object.value,
|
|
class_name: object.repository_column.data_type,
|
|
namespace: Api::V1,
|
|
adapter: :attribute
|
|
).as_json
|
|
end
|
|
|
|
def value_type
|
|
Extends::API_REPOSITORY_DATA_TYPE_MAPPINGS[object.repository_column.data_type]
|
|
end
|
|
end
|
|
end
|
|
end
|