mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
14 lines
360 B
Ruby
14 lines
360 B
Ruby
class QueuedPostSerializer < ApplicationSerializer
|
|
attributes :id,
|
|
:queue,
|
|
:user_id,
|
|
:state,
|
|
:topic_id,
|
|
:approved_by_id,
|
|
:rejected_by_id,
|
|
:raw,
|
|
:post_options,
|
|
:created_at
|
|
|
|
has_one :user, serializer: BasicUserSerializer, embed: :object
|
|
end
|