2016-01-20 15:48:46 +01:00
|
|
|
class DossierSerializer < ActiveModel::Serializer
|
|
|
|
attributes :id,
|
|
|
|
:nom_projet,
|
2016-01-25 16:08:10 +01:00
|
|
|
:description,
|
|
|
|
:created_at,
|
|
|
|
:updated_at,
|
2016-02-26 12:17:41 +01:00
|
|
|
:archived,
|
|
|
|
:mandataire_social
|
2016-01-25 16:08:10 +01:00
|
|
|
|
|
|
|
has_one :entreprise
|
|
|
|
has_one :etablissement
|
2016-03-16 15:34:35 +01:00
|
|
|
has_many :cerfa
|
2016-03-14 10:34:46 +01:00
|
|
|
has_many :commentaires
|
2016-02-26 12:17:41 +01:00
|
|
|
has_many :champs
|
2016-03-17 14:50:10 +01:00
|
|
|
has_many :types_de_piece_justificative
|
2016-01-20 15:48:46 +01:00
|
|
|
end
|