Merge pull request #5797 from wandji20/wb-SCI-8884

Fix issue when fetching table results via API [SCI-8884]
This commit is contained in:
artoscinote 2023-07-19 09:51:08 +02:00 committed by GitHub
commit 4f5a0d89a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,12 +4,16 @@ module Api
module V1
class ResultTableSerializer < ActiveModel::Serializer
type :result_tables
attributes :table_id, :table_contents, :metadata
attributes :table_id, :table_contents, :table_metadata
def table_id
object.table&.id
end
def table_metadata
object.table&.metadata
end
def table_contents
object.table&.contents&.force_encoding(Encoding::UTF_8)
end