10 lines
167 B
Ruby
10 lines
167 B
Ruby
class CommentaireSerializer < ActiveModel::Serializer
|
|
attributes :email,
|
|
:body,
|
|
:created_at,
|
|
:attachment
|
|
|
|
def attachment
|
|
object.file_url
|
|
end
|
|
end
|