2018-10-07 11:29:56 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Api
|
|
|
|
module V1
|
|
|
|
class ProtocolKeywordSerializer < ActiveModel::Serializer
|
|
|
|
type :protocol_keywords
|
|
|
|
attributes :id, :name
|
2021-08-18 10:00:01 +02:00
|
|
|
|
|
|
|
include TimestampableModel
|
2018-10-07 11:29:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|