discourse/app/serializers/group_post_serializer.rb

34 lines
571 B
Ruby

class GroupPostSerializer < ApplicationSerializer
attributes :id,
:cooked,
:created_at,
:title,
:url,
:user_title,
:user_long_name,
:category
has_one :user, serializer: BasicUserSerializer, embed: :objects
def title
object.topic.title
end
def user_long_name
object.user.try(:name)
end
def user_title
object.user.try(:title)
end
def include_user_long_name?
SiteSetting.enable_names?
end
def category
object.topic.category
end
end