Chatwoot/app/views/api/v1/accounts/portals/index.json.jbuilder
Tejaswini Chile 782165478b
fix: Update article count in portal admin dashboard (#5647)
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2022-10-21 13:43:15 -07:00

10 lines
228 B
Ruby

json.payload do
json.array! @portals.each do |portal|
json.partial! 'portal', formats: [:json], portal: portal, articles: []
end
end
json.meta do
json.current_page @current_page
json.portals_count @portals.size
end