mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
Merge pull request #5797 from wandji20/wb-SCI-8884
Fix issue when fetching table results via API [SCI-8884]
This commit is contained in:
commit
4f5a0d89a7
1 changed files with 5 additions and 1 deletions
|
@ -4,12 +4,16 @@ module Api
|
||||||
module V1
|
module V1
|
||||||
class ResultTableSerializer < ActiveModel::Serializer
|
class ResultTableSerializer < ActiveModel::Serializer
|
||||||
type :result_tables
|
type :result_tables
|
||||||
attributes :table_id, :table_contents, :metadata
|
attributes :table_id, :table_contents, :table_metadata
|
||||||
|
|
||||||
def table_id
|
def table_id
|
||||||
object.table&.id
|
object.table&.id
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def table_metadata
|
||||||
|
object.table&.metadata
|
||||||
|
end
|
||||||
|
|
||||||
def table_contents
|
def table_contents
|
||||||
object.table&.contents&.force_encoding(Encoding::UTF_8)
|
object.table&.contents&.force_encoding(Encoding::UTF_8)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue