discourse/app/serializers/group_post_serializer.rb

24 lines
478 B
Ruby
Raw Normal View History

class GroupPostSerializer < ApplicationSerializer
attributes :id,
2016-12-05 05:12:24 -05:00
:excerpt,
:created_at,
:title,
:url,
:category
has_one :user, serializer: GroupPostUserSerializer, embed: :object
2016-12-05 05:12:24 -05:00
has_one :topic, serializer: BasicTopicSerializer, embed: :object
def title
object.topic.title
end
def include_user_long_name?
SiteSetting.enable_names?
end
def category
object.topic.category
end
end