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