mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-11-17 14:32:34 +08:00
12 lines
217 B
Ruby
12 lines
217 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V2
|
|
class FormSerializer < ActiveModel::Serializer
|
|
type :forms
|
|
attributes :id, :name, :description
|
|
|
|
include TimestampableModel
|
|
end
|
|
end
|
|
end
|