discourse/app/serializers/post_wordpress_serializer.rb

15 lines
318 B
Ruby

# frozen_string_literal: true
# The most basic attributes of a topic that we need to create a link for it.
class PostWordpressSerializer < BasicPostSerializer
attributes :post_number
def avatar_template
if object.user
UrlHelper.absolute object.user.avatar_template
else
nil
end
end
end