fix the build

This commit is contained in:
Arpit Jalan 2018-01-03 17:35:36 +05:30
parent 06e509057e
commit 7ca2e6a80c

View File

@ -92,7 +92,7 @@ class TopicViewSerializer < ApplicationSerializer
end
if object.post_counts_by_user.present?
participants = object.post_counts_by_user.reject{ |p| object.participants[p].blank? }.map do |pc|
participants = object.post_counts_by_user.reject { |p| object.participants[p].blank? }.map do |pc|
TopicPostCountSerializer.new({ user: object.participants[pc[0]], post_count: pc[1] }, scope: scope, root: false)
end
result[:participants] = participants if participants.length > 0