discourse/app/serializers/topic_post_count_serializer.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
749 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2013-02-05 14:16:51 -05:00
class TopicPostCountSerializer < BasicUserSerializer
attributes :post_count, :primary_group_name,
:primary_group_flair_url, :primary_group_flair_color, :primary_group_flair_bg_color
2013-02-05 14:16:51 -05:00
def id
object[:user].id
end
def username
object[:user].username
end
def post_count
object[:post_count]
end
def primary_group_name
return nil unless object[:user].primary_group_id
object[:user]&.primary_group&.name
end
def primary_group_flair_url
object[:user]&.primary_group&.flair_url
end
def primary_group_flair_bg_color
object[:user]&.primary_group&.flair_bg_color
end
def primary_group_flair_color
object[:user]&.primary_group&.flair_color
end
2013-02-07 10:45:24 -05:00
end