mirror of
https://github.com/discourse/discourse.git
synced 2026-08-05 18:46:18 +08:00
6 lines
193 B
Ruby
Vendored
6 lines
193 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
class ReviewableConversationPostSerializer < ApplicationSerializer
|
|
attributes :id, :excerpt
|
|
has_one :user, serializer: BasicUserSerializer, root: "users"
|
|
end
|