diaspora/app/serializers/export/post_serializer.rb
2016-08-08 19:37:09 +02:00

13 lines
316 B
Ruby

module Export
class PostSerializer < ActiveModel::Serializer
attributes :guid,
:text,
:public,
:diaspora_handle,
:type,
:likes_count,
:comments_count,
:reshares_count,
:created_at
end
end