2016-02-26 12:17:41 +01:00
|
|
|
class PieceJustificativeSerializer < ActiveModel::Serializer
|
2016-03-14 17:30:22 +01:00
|
|
|
attributes :created_at,
|
2017-06-12 13:49:51 +02:00
|
|
|
:type_de_piece_justificative_id,
|
|
|
|
:content_url
|
2016-02-26 12:17:41 +01:00
|
|
|
|
2016-03-17 17:33:38 +01:00
|
|
|
has_one :user
|
2018-10-31 10:29:03 +01:00
|
|
|
|
|
|
|
def created_at
|
|
|
|
object.created_at&.in_time_zone('UTC')
|
|
|
|
end
|
2017-04-04 15:27:04 +02:00
|
|
|
end
|