14 lines
234 B
Ruby
14 lines
234 B
Ruby
class CommentaireSerializer < ActiveModel::Serializer
|
|
attributes :email,
|
|
:body,
|
|
:created_at,
|
|
:attachment
|
|
|
|
def created_at
|
|
object.created_at&.in_time_zone('UTC')
|
|
end
|
|
|
|
def attachment
|
|
object.file_url
|
|
end
|
|
end
|