mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:32:26 +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
|
||
|
|