Newer
Older
dmpopidor / app / views / api / v0 / themes / extract.jbuilder
@Quentin Sonrel Quentin Sonrel on 5 Sep 2018 324 bytes Moved API to API/V0 module
json.theme @theme.title
json.answers @answers do |a|
  json.id a.id
  json.answer a.text
  json.created_at a.created_at
  json.question do
    json.id a.question.id
    json.title a.question.text
    json.type a.question.question_format.title
  end
  json.plan do
    json.id a.plan.id
    json.title a.plan.title
  end
end