2021-06-07 13:34:01 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class DirectoryColumnSerializer < ApplicationSerializer
|
|
|
|
attributes :id,
|
|
|
|
:name,
|
2021-06-17 13:37:37 -04:00
|
|
|
:automatic,
|
2021-06-07 13:34:01 -04:00
|
|
|
:enabled,
|
|
|
|
:automatic_position,
|
|
|
|
:position,
|
|
|
|
:icon
|
|
|
|
|
|
|
|
has_one :user_field, serializer: UserFieldSerializer, embed: :objects
|
|
|
|
end
|