25 lines
404 B
Ruby
25 lines
404 B
Ruby
class TopicPostCountSerializer < BasicUserSerializer
|
|
|
|
attributes :post_count
|
|
|
|
def id
|
|
object[:user].id
|
|
end
|
|
|
|
def username
|
|
object[:user].username
|
|
end
|
|
|
|
def post_count
|
|
object[:post_count]
|
|
end
|
|
|
|
def uploaded_avatar_id
|
|
object[:user].uploaded_avatar_id
|
|
end
|
|
|
|
def include_uploaded_avatar_id?
|
|
SiteSetting.allow_uploaded_avatars? && object[:user].use_uploaded_avatar
|
|
end
|
|
end
|