mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-17 22:51:24 +08:00
12 lines
297 B
Ruby
12 lines
297 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Api
|
||
|
module V1
|
||
|
class ProtocolTemplateSerializer < ProtocolSerializer
|
||
|
type :protocol_templates
|
||
|
attributes :version_number, :version_comment, :published_on, :archived
|
||
|
belongs_to :published_by, serializer: UserSerializer
|
||
|
end
|
||
|
end
|
||
|
end
|