demarches-normaliennes/app/serializers/procedure_serializer.rb

12 lines
382 B
Ruby
Raw Normal View History

2015-12-21 17:51:49 +01:00
class ProcedureSerializer < ActiveModel::Serializer
attributes :id,
:libelle,
:description,
:organisation,
:direction,
:lien_demarche,
:archived
has_many :types_de_champ, serializer: TypeDeChampSerializer
has_many :types_de_piece_justificative, serializer: TypeDePieceJustificativeSerializer
end