mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-08 14:15:35 +08:00
9 lines
237 B
Ruby
9 lines
237 B
Ruby
# frozen_string_literal: true
|
|
|
|
class FormFieldSerializer < ActiveModel::Serializer
|
|
attributes :id, :name, :description, :updated_at, :type, :required, :allow_not_applicable, :uid, :position
|
|
|
|
def type
|
|
object.data[:type]
|
|
end
|
|
end
|