demarches-normaliennes/app/serializers/dossier_serializer.rb

17 lines
417 B
Ruby
Raw Normal View History

2016-01-20 15:48:46 +01:00
class DossierSerializer < ActiveModel::Serializer
attributes :id,
:nom_projet,
:description,
:created_at,
:updated_at,
2016-02-26 12:17:41 +01:00
:archived,
:mandataire_social
has_one :entreprise
has_one :etablissement
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
has_many :pieces_justificatives
2016-03-17 14:50:10 +01:00
has_many :types_de_piece_justificative
2016-01-20 15:48:46 +01:00
end