mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 14:17:00 +08:00
a288708368
* Add API endpoint for protocol templates [SCI-7456] * Create protocol template api serializer [SCI-7456]
11 lines
297 B
Ruby
11 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
|