chatwoot-develop/app/views/api/v1/accounts/frequent_questions/index.json.jbuilder
2026-01-19 19:26:23 -03:00

9 lines
210 B
Ruby

json.payload do
json.array! @frequent_questions do |fq|
json.id fq.id
json.question_text fq.question_text
json.occurrence_count fq.occurrence_count
json.cluster_date fq.cluster_date
end
end