demarches-normaliennes/app/serializers/dossiers_serializer.rb
LeSim 56545933a9 [fix #504] Dossier: initiated -> en_construction
The change must not impact the api
2017-12-15 11:52:09 +01:00

9 lines
164 B
Ruby

class DossiersSerializer < ActiveModel::Serializer
attributes :id,
:updated_at,
:initiated_at
def initiated_at
object.en_construction_at
end
end