Files
nairobi/app/models/comment/exporter.rb
2021-08-16 16:31:04 +02:00

19 lines
310 B
Ruby

class Comment::Exporter
include JsonExporter
def model
Comment
end
private
def json_values(comment)
{
id: comment.id,
commentable_id: comment.commentable_id,
commentable_type: comment.commentable_type,
body: strip_tags(comment.body)
}
end
end