mirror of
https://github.com/discourse/discourse.git
synced 2025-03-06 03:09:43 +00:00
15 lines
360 B
Ruby
15 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
|