mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 22:25:30 +08:00
23 lines
432 B
Ruby
23 lines
432 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Api
|
||
|
module V2
|
||
|
class ResultTableSerializer < ActiveModel::Serializer
|
||
|
type :tables
|
||
|
attributes :table_id, :table_contents, :table_metadata
|
||
|
|
||
|
def table_id
|
||
|
object.table&.id
|
||
|
end
|
||
|
|
||
|
def table_contents
|
||
|
object.table&.contents&.force_encoding(Encoding::UTF_8)
|
||
|
end
|
||
|
|
||
|
def table_metadata
|
||
|
object.table&.metadata
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|