Chatwoot/app/views/public/api/v1/models/_portal.json.jbuilder
2022-07-05 17:15:38 +05:30

14 lines
389 B
Ruby

json.custom_domain portal.custom_domain
json.header_text portal.header_text
json.homepage_link portal.homepage_link
json.name portal.name
json.page_title portal.page_title
json.slug portal.slug
json.categories do
if portal.categories.any?
json.array! portal.categories.each do |category|
json.partial! 'categories/category.json.jbuilder', category: category
end
end
end