mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 05:05:55 +08:00
18 lines
355 B
Ruby
18 lines
355 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class ResultTableSerializer < ActiveModel::Serializer
|
|
type :result_tables
|
|
attributes :table_id, :table_contents
|
|
|
|
def table_id
|
|
object.table&.id
|
|
end
|
|
|
|
def table_contents
|
|
object.table&.contents&.force_encoding(Encoding::UTF_8)
|
|
end
|
|
end
|
|
end
|
|
end
|