mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 21:24:54 +08:00
16 lines
295 B
Ruby
16 lines
295 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class StepTextSerializer < ActiveModel::Serializer
|
|
type :step_texts
|
|
attributes :id, :text
|
|
|
|
include TimestampableModel
|
|
|
|
def contents
|
|
object.text&.force_encoding(Encoding::UTF_8)
|
|
end
|
|
end
|
|
end
|
|
end
|