diaspora/app/serializers/export/profile_serializer.rb
2014-12-16 08:55:35 +13:00

14 lines
337 B
Ruby

module Export
class ProfileSerializer < ActiveModel::Serializer
attributes :first_name,
:last_name,
:gender,
:bio,
:birthday,
:location,
:image_url,
:diaspora_handle,
:searchable,
:nsfw
end
end