mirror of
https://github.com/discourse/discourse.git
synced 2025-02-23 06:43:09 +08:00
16 lines
270 B
Ruby
16 lines
270 B
Ruby
![]() |
class GroupPostSerializer < ApplicationSerializer
|
||
|
attributes :id,
|
||
|
:cooked,
|
||
|
:created_at,
|
||
|
:title,
|
||
|
:url
|
||
|
|
||
|
has_one :user, serializer: BasicUserSerializer, embed: :objects
|
||
|
|
||
|
def title
|
||
|
object.topic.title
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|