diaspora/app/serializers/export/aspect_serializer.rb
Benjamin Neff 8f804e376a
Don't export chat_enabled flag anymore
The chat is already removed for 0.8, so there is no need to still export
this data since it can't be imported anyway.

Related to #8069

closes #8265
2021-07-04 22:03:37 +02:00

7 lines
127 B
Ruby

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