discourse/app/serializers/topic_post_count_serializer.rb
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
This reduces chances of errors where consumers of strings mutate inputs
and reduces memory usage of the app.

Test suite passes now, but there may be some stuff left, so we will run
a few sites on a branch prior to merging
2019-05-13 09:31:32 +08:00

38 lines
749 B
Ruby

# frozen_string_literal: true
class TopicPostCountSerializer < BasicUserSerializer
attributes :post_count, :primary_group_name,
:primary_group_flair_url, :primary_group_flair_color, :primary_group_flair_bg_color
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
end