scinote-web/app/serializers/form_field_serializer.rb
2024-12-10 12:22:56 +01:00

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