mirror of
https://github.com/discourse/discourse.git
synced 2025-01-24 11:39:29 +08:00
14 lines
327 B
Ruby
14 lines
327 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class DirectoryColumnSerializer < ApplicationSerializer
|
||
|
attributes :id,
|
||
|
:name,
|
||
|
:automatic,
|
||
|
:enabled,
|
||
|
:automatic_position,
|
||
|
:position,
|
||
|
:icon
|
||
|
|
||
|
has_one :user_field, serializer: UserFieldSerializer, embed: :objects
|
||
|
end
|