demarches-normaliennes/app/serializers/dossier_serializer.rb
2016-03-17 14:50:10 +01:00

16 lines
No EOL
383 B
Ruby

class DossierSerializer < ActiveModel::Serializer
attributes :id,
:nom_projet,
:description,
:created_at,
:updated_at,
:archived,
:mandataire_social
has_one :entreprise
has_one :etablissement
has_many :cerfa
has_many :commentaires
has_many :champs
has_many :types_de_piece_justificative
end