mirror of
https://github.com/discourse/discourse.git
synced 2024-12-12 01:53:42 +08:00
5 lines
162 B
Ruby
5 lines
162 B
Ruby
|
class ReviewableConversationPostSerializer < ApplicationSerializer
|
||
|
attributes :id, :excerpt
|
||
|
has_one :user, serializer: BasicUserSerializer, root: 'users'
|
||
|
end
|