mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 22:25:30 +08:00
20 lines
416 B
Ruby
20 lines
416 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class TableSerializer < ActiveModel::Serializer
|
|
type :tables
|
|
attributes :id, :name, :contents, :metadata, :position
|
|
|
|
include TimestampableModel
|
|
|
|
def contents
|
|
object.contents&.force_encoding(Encoding::UTF_8)
|
|
end
|
|
|
|
def position
|
|
object&.step_table&.step_orderable_element&.position
|
|
end
|
|
end
|
|
end
|
|
end
|