chatwoot/chatwoot

View on GitHub
app/views/public/api/v1/models/hc/_associated_article.json.jbuilder

Summary

Maintainability
Test Coverage
json.id article.id
json.category_id article.category_id
json.title article.title
json.content article.content
json.description article.description
json.status article.status
json.account_id article.account_id
json.last_updated_at article.updated_at
json.views article.views

if article.author.present?
  json.author do
    json.partial! 'public/api/v1/models/hc/author', formats: [:json], resource: article.author
  end
end