diaspora/app/serializers/export/aspect_serializer.rb
Benjamin Neff 4fa92c1823
Remove flag for contacts visible to each other
This feature only worked on the same pod and was more confusing than
useful.
2018-04-12 01:39:11 +02:00

7 lines
142 B
Ruby

# frozen_string_literal: true
module Export
class AspectSerializer < ActiveModel::Serializer
attributes :name, :chat_enabled
end
end