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