9 lines
191 B
Ruby
9 lines
191 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Export
|
|
class AspectSerializer < ActiveModel::Serializer
|
|
attributes :name,
|
|
:contacts_visible,
|
|
:chat_enabled
|
|
end
|
|
end
|